参考博客:
create table school(
id int primary key,
name nvarchar(20)
)
create table People(
RN int IDENTITY(1,1) unique,--IDENTITY(起始值,递增量),从【起始值】开始以【递增量】每次自增长;unique唯一索引关键字
id int primary key,--primary key 主键,每个表中只能有一个主键,与外键构成参照完整性约束,防止出现数据不一致
name nvarchar(20) not null,--非空
sex varchar check(sex='male' or sex='famale'), --check在每次insert时会进行检查,若不符合check的条件,则无法整条语句插入成功
age int default 18,--设置默认值
weight decimal(18,2),
height decimal (18,2),
schoolid int foreign key references school(id),--references将people表的schoolid和school表的id进行关联,在school表中id为主键
birth_date datetime,
per as weight/height --as为自动计算字段
)