sql一些命令

1、创建表

create table tSId
(
tSid int identity(1,1) primary key,
tSName varchar(10) check(len(tSName)>2),
tSGender char(2) default('男'),
tSAddress varchar(50) null,
tSPhone char(11) null,
tSAge int chect(tSAge>18 and tSAge<60),
tSBirthay date not null,
tSCardld varchar(18) not null,
tClassId int foreign key references TblClass(TClassId)
)

2、插入

insert into Users(UserName,UserPwd) values('ccc',123456)

  

上一篇:点击页面其它地方隐藏该div的两种思路


下一篇:NOI十连测 第六测 T3