SQL之建立學生表

--建立學生表 create table studentSys( stuId varchar(6) primary key, stuName nvarchar(5) not null, stuSex nchar(1) check (stuSex in('男', '女')) default '男' , stuAge int check(stuAge>1), stuHome nvarcha
相關文章
相關標籤/搜索