摘要:
not null约束,需设置默认值 sex enum('male','female') not null default 'male' unique 约束,值唯一 单列唯一: create table department( id int unique, name char(10) unique); 阅读全文
摘要:
整形类型:该类型没必要指定显示宽度,使用默认的就ok。 类型 大小 TINYINT 1字节 SMALLINT 2字节 MEDIUMINT 3字节 INT或INTEGER 4字节(后面加的宽度不是存储宽度,而是显示宽度) create table t5(id int(5) unsigned zerof 阅读全文