五大约束
  —-主键约束 (Primay Key Constraint)    性,非空性
  —-约束 (Unique Constraint)            性,可以空,但只能有一个
  —-检查约束 (Check Constraint))            对该列数据的范围、格式的限制(如:年龄、性别等)
  —-默认约束 (Default Constraint)            该数据的默认值
  —-外键约束 (Foreign Key Constraint)     需要建立两表间的关系并引用主表的列
  五大约束的语法示例
  —-添加主键约束(将stuNo作为主键)
  alter table stuInfo
  add constraint PK_stuNo primary key (stuNo)
  —-添加约束(身份证号,因为每个人的都不一样)
  alter table stuInfo
  add constraint UQ_stuID unique(stuID)
  —-添加默认约束(如果地址不填 默认为“地址不详”)
  alter table stuInfo
  add constraint DF_stuAddress default (‘地址不详’) for stuAddress
  —-添加检查约束 (对年龄加以限定 15-40岁之间)
  alter table stuInfo
  add constraint CK_stuAge check (stuAge between 15 and 40)
  alter table stuInfo
  add constraint CK_stuSex check (stuSex=’男’ or stuSex=’女′)
  —-添加外键约束 (主表stuInfo和从表stuMarks建立关系,关联字段stuNo)