1,创建表时加入的约束 a) 非空约束,not null b) 唯一约束,unique c) 主键约束,primary key d) 外键约束,foreign key 1,非空约束,针对某个字段设置其值不为空,如:学生的姓名不能为空 drop table if exists t_student; create table t_student( student_id ), student_name ) not null, sex ) default 'm', birthday date, emai