資料庫設計注意事項

2021-06-08 04:08:15 字數 741 閱讀 2776

關係型資料庫還能盛行多久??

針對表的描述中,要重點說明設計這張表的原因、理由或目的,以及與其他表的關係,尤其是與業務邏輯緊密相關的表。

指令碼中,每個字段新增必要的注釋,例如:

comment on table sys_users_t is

'系統使用者的相關資訊'

/comment on column sys_users_t.user_id is

'主鍵'

/comment on column sys_users_t.user_name is

'使用者名稱'

/comment on column sys_users_t.user_password is

'使用者密碼'

/comment on column sys_users_t.user_relname is

'使用者真實姓名'

/comment on column sys_users_t.role_id is

'使用者角色'

/comment on column sys_users_t.user_desc is

'使用者描述'

/comment on column sys_users_t.state is

'0:非法使用者;1:合法使用者'

/comment on column sys_users_t.op_date is

'操作日期'

/這樣做的好處是以後再進行公升級或維護時,開發人員、維護人員很容易看到每個字段含義。

資料庫設計注意事項

dbms資料庫管理系統 資料庫設計 1 有效儲存 2 高效訪問目的 1 減少資料冗餘 2 避免資料維護異常 3 節約儲存空間 4 高效的訪問資料庫設計過程 1 需求分析 分析需要儲存的資料是哪些,這些資料有哪些屬性,這些屬性各自的特點是什麼 2 邏輯設計 使用er圖對資料庫進行邏輯建模,3 物理設計...

資料庫表設計注意事項

1.使用英文單詞,避免使用拼音 2.使用單詞單數,採用大寫,方便不同資料庫移植 3.單詞間使用下劃線分隔 4.表的字首建議表名前加上對應的簡寫的模組名 5.列名採用大寫,單詞採用單數 6.對於同樣含義的字段,採用同樣的列名,同時,字段型別也應一樣 7.命名時避免保留字衝突,如names,key,ty...

資料庫注意事項

主要就是6點 1.必須考慮業務唯一性並建復合唯一索引 2.所有字段盡量設定為not null 3.區分度低的字段不要建索引 4.邏輯外來鍵要建索引 5.用uuiddelete id varchar 32 not null default 做偽刪除 6.建議確定無負數的字段設定unsigned 建表時...