MySql 整型列的可选属性

tinyint(M) unsigned zerofill

unsigned : 无符号的

zerpfill : 0填充

M : 代表宽度(只有在zerofill的时候才有用)

例如:

M=4,数据为1和5,具体显示为:0001,和0005


列可以声明默认值:

not null default 0

这样默认值就不是null,而是 0 。


猜你喜欢

转载自blog.csdn.net/hk_jy/article/details/80354986