使用erwin進行mysql建模

2021-09-02 15:51:48 字數 939 閱讀 3893

1,定義資料字典,把需要用到的資料型別建立好

2,在物理模式下,設定資料字典,修改comment為%attname

這樣會預設使用邏輯模式下,實體屬性的名稱作為欄位的注釋

3,物理模式下選擇database->pre & post script->model-level,如下圖

新增角本

在生成資料庫時,使用欄位的注釋

}4,匯出sql角本

勾選上post-script

最後可以看到角本裡面,增加了注釋的角本

alter table user_points_summary modify school_id integer comment '學校id';

alter table user_points_summary modify class_id integer comment '班級id';

mysql建表建索引6 mysql建表建索引

建表 create table sj projects id int 11 not null auto increment,title varchar 255 not null default comment 專案名稱 platform id int 11 not null default 0 co...

mysql建表和使用規則

特別注意 強制 建立表時必須顯式指定字符集為utf8或utf8mb4。強制 建立表時必須顯式指定表儲存引擎型別,如無特殊需求,一律為innodb。強制 建表必須有comment。建議 建表時關於主鍵 強制要求主鍵為id,型別為int或bigint,且為auto increment。建議 表中所有字段...

mysql建立使用者表 mysql 建庫建表建使用者

1.建立資料庫 create database school 2.使用資料庫 use school 3.建立使用者 create user jame localhost identified by jame 4.授權使用者 注意這裡是用了 哦,可以自己講school也替換成 號 grant sele...