mysql workbench的PK,NN,UQ,BIN,UN,ZF,AI

kylinfish發表於2015-04-15

mysql workbench建表時PK、NN、UQ、BIN、UN、ZF、AI的意思,後面幾個老搞不清,隨記在這便於以後方便查。

[intrinsic column flags] (基本欄位型別標識)
- PK: primary key (column is part of a pk) 主鍵
- NN: not null (column is nullable) 非空
- UQ: unique (column is part of a unique key) 唯一
- AI: auto increment (the column is auto incremented when rows are inserted) 自增


[additional data type flags, depend on used data type] 擴充套件資料型別標記
- BIN: binary (if dt is a blob or similar, this indicates that is binary data, rather than text) 二進位制(比text更大的二進位制資料)
- UN: unsigned (for integer types, see docs: “10.2. Numeric Types”) 整數
- ZF: zero fill (rather a display related flag, see docs: “10.2. Numeric Types”)值中最有意義的位元組總為0,並且不儲存。

PS: ZF個人理解指的是帶有小數佔位符的資料相當於金額型別的資料。

注:內容來自於網路參考

相關文章