数据库中怎样用T-SQL语句建立表?并且在表中输入数据和设置数据的属性?
展开全部
create table student
(
student_id int primary key, 整型,主键约束
student_name varchar(20) not null,可变长字符串类型,非空约束
student_age int check(student_age>6),整型,check约束
……
)
insert into table student values (1,'wangang',10)
insert into table student values (2,'zhaoqiang',9)
insert into table student values (3,'lihong',8)
(
student_id int primary key, 整型,主键约束
student_name varchar(20) not null,可变长字符串类型,非空约束
student_age int check(student_age>6),整型,check约束
……
)
insert into table student values (1,'wangang',10)
insert into table student values (2,'zhaoqiang',9)
insert into table student values (3,'lihong',8)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询