前段時間,筆者在設計某個系統模塊的時候,須要增長十幾張表。數據庫
爲了簡單快速地把這十幾張表設計並定義出來,我找到了一個能夠在線設計數據庫關係圖(database relationship diagram)且能夠導出DDL SQL的工具——dbdiagram.io。工具
dbdiagram.io是holistics.io這款商業產品的社區版。post
dbdiagram.io使用DSL語言,能夠簡單快速地建立數據庫關係圖。學習
這款工具的操做界面也很是簡約並具備設計感:spa
這個時候這個在線的數據庫關係圖工具就排上用場了。設計
下面介紹一下它的語法。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的特色: