摘要:
列属性(约束)1: 是否允许为空(not null) --not null不允许为空create table t_1( a tinyint(3) zerofill not null, b tinyint(3));例: insert into t_1 values(18,29);例: insert i 阅读全文
摘要:
use test;create table `employee`( emp_no int unsigned, emp_name varchar(30), emp_sex varchar(3), emp_age tinyint unsigned, sal double, history datetim 阅读全文