10000-11 SQL server 学生表案例 SQL语句

    

 

   

create table Student(
ID int identity(1,1) not null,
Name nvarchar(50) not null,
Age int not null,
ChineseScores int null,--语文成绩
MathScores int null,--数学成绩

primary key(ID)
);
go

 效果:

 学生表的成功创建。 

   

 

posted @ 2021-10-13 19:27  优敏行  阅读(174)  评论(0)    收藏  举报