在線數據庫關係圖設計工具 dbdiagram.io

前段時間,筆者在設計某個系統模塊的時候,須要增長十幾張表。數據庫

爲了簡單快速地把這十幾張表設計並定義出來,我找到了一個能夠在線設計數據庫關係圖(database relationship diagram)且能夠導出DDL SQL的工具——dbdiagram.io工具

dbdiagram.ioholistics.io這款商業產品的社區版。post

dbdiagram.io使用DSL語言,能夠簡單快速地建立數據庫關係圖。學習

這款工具的操做界面也很是簡約並具備設計感:spa

  • 有時候咱們須要在關係型數據庫中設計一些表,以便實現咱們的業務功能。
  • 或者咱們對某個系統的表結構不是很熟悉,但願畫個圖表示一下這些實體之間的關係。
  • 又或者咱們但願把設計好的數據庫關係圖直接轉化爲DDL SQL。
  • 並且咱們不想使用複雜的工具,付出高昂的學習成本。
  • 也不想用過重的工具,佔用內存。

這個時候這個在線的數據庫關係圖工具就排上用場了。設計

語法

下面介紹一下它的語法。code

定義表的語法以下:ip

Table users {
  id integer [pk]
  username varchar [not null, unique]
  full_name type [not null]
  .....
}

若是表名太長還支持取別名:內存

Table longtablename as t_alias {
  .....
}

定義外鍵支持以下三種關係:ci

< : One-to-many
> : Many-to-one
- : One-to-one

而且提供了3種定義外鍵的方式:

Ref name-optional {
  table1.field1 < table2.field2
}

Ref name-optional: t1.f1 < t2.f2

Table posts {
  id integer [pk, ref: < comments.post_id]
  user_id integer [ref: > users.id]
}

例子

下面以電商系統經常使用的幾張表做爲例子演示一下它的用法。

當你登陸本身的Google帳號之後,能夠把你設計好的圖形保存到線上,這樣就能夠經過一個惟一的連接訪問 : https://dbdiagram.io/d/5cc910...

這裏是DSL:

Table orders {
  id int [primary key]
  user_id int [not null, unique]
  status varchar
  created_at varchar
}

Table order_items {
  order_id int
  product_id int
  quantity int
}

Table products {
  id int [primary key]
  name varchar
  merchant_id int [not null]
  price int
  status varchar
  created_at varchar
  category_id int
}

Table users {
  id int [primary key]
  full_name varchar
  email varchar [unique]
  gender varchar
  date_of_birth varchar
  created_at varchar
  country_code int
}

Table merchants {
  id int [primary key]
  admin_id int
  merchant_name varchar
  country_code int
  created_at varchar

}

Table categories {
  id int [primary key]
  cat_name varchar
  parent_id int
}

Table countries {
  code int [primary key]
  name varchar
  continent_name varchar
}

Ref {
  orders.user_id > users.id
}
Ref {
  order_items.order_id > orders.id
}

Ref {
  order_items.product_id > products.id
}

Ref {
  products.merchant_id > merchants.id
}

Ref {
  products.category_id > categories.id
}

Ref {
  categories.parent_id > categories.id
}

Ref {
  users.country_code > countries.code
}

Ref {
  merchants.admin_id > users.id
}

Ref {
  merchants.country_code > countries.code
}

這裏是導出的數據庫關係圖PDF:

總結

最後總結一下dbdiagram.io的特色:

  • DSL : 使用簡單的DSL語言便可定義數據庫關係圖
  • Google Account :使用Google帳號能夠在線保存設計好的圖
  • Online :不須要安裝軟件,方便快捷,並且支持拖動和調節
  • Import/Export : 支持導出DDL SQL和PDF,支持導入外部數據
  • Share : 能夠生成一個分享連接,方便團隊成員協做

Wechat-westcall

相關文章
相關標籤/搜索