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
效果:
学生表的成功创建。
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
效果:
学生表的成功创建。