代码:
create table Teacher ( Id int identity(1,1), Name nvarchar not null, Gender bit not null, Age int check(age>0 and age<=100)not null, Salary money, Birthday datetime not null default('2000-9-9') )
代码:
create table Teacher ( Id int identity(1,1), Name nvarchar not null, Gender bit not null, Age int check(age>0 and age<=100)not null, Salary money, Birthday datetime not null default('2000-9-9') )
转载于:https://juejin.im/post/5ced422c518825767072bc09