Fields

基本属性

Name

键名字,一般已下划线连接。eg: mobile_phone

Type

varchar: 可变长度字符串

Length

Use the Length edit box to define the length of the field and use Decimals edit box to define the number of digits after the decimal point (the scale) for Floating Point data type.
使用“长度”编辑框定义字段的长度,并使用“小数”编辑框定义后面的位数浮点数据类型的小数点(小数位数)

网上教程说是,这个是设置显示宽度,和数据类型的长度无关。

通过实践:
varchar: Length表示就是varchar的长度,相当于varchar(Length)
timestamp: Length和毫秒位有关,当设置为0时,就不会保存毫秒位

navicat设置MySQL字段类型的长度解释说明

Decimals

10进制,这个是设置小数点位置后的位数。

Not Null

是否可以为空

key

是否是主键

Comment

注释

额外属性:

Default Value

默认值

Collation

整理

Dimention

纬度

Identity

身份

参考

官方手册