数据库中怎样用T-SQL语句建立表?并且在表中输入数据和设置数据的属性?

2025-01-06 08:04:14
推荐回答(2个)
回答1:

create table 表名(
列名1 类型1 约束条件1,
列名2 类型2 约束条件2

insert 表名 vluues column(参数1,参数2)

回答2:

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)