标签:image charset lin col 数据类型 技术 小数 快速 def
注意:
注意:
注意:
create table if not exists numbers( id INT(11) UNSIGNED not null, username VARCHAR(50) not null, content LONGTEXT not null, create_time datetime not null, sex TINYINT UNSIGNED not null DEFAULT 1, age TINYINT DEFAULT 18 )ENGINE=INNODB DEFAULT CHARSET=utf8; create table if not exists nums( id INT(11) not null, username VARCHAR(50) not null, content LONGTEXT not null, create_time datetime not null, sex TINYINT UNSIGNED not null DEFAULT 1, age TINYINT zerofill )ENGINE=INNODB DEFAULT CHARSET=utf8; zerofill # 表示填充0 UNSIGNED # 不能出现负数 default # 设置默认值 not null # 表示不为空
标签:image charset lin col 数据类型 技术 小数 快速 def
原文地址:https://www.cnblogs.com/wuzc/p/12199380.html