1 -- 创建数据库 2 create database OneDB 3 4 -- 使用数据库 5 use OneDB 6 7 -- 创建表 : 分类表 8 create table classify 9 ( 10 id int primary key identity(1,1), -- 主键标识,从1开始,步长1增长 11 name nvarchar(20) not null -- not null 非空 12 ) 13 14 -- 向classify表中插入数据 15 insert into classify(name)values(\'图书\') -- 主键标识是自增的 16 insert into classify(name)values(\'家电\') -- 所以在这里只需要向 17 insert into classify(name)values(\'服饰\') -- name中插入数据即可! 18 19 20 -- 创建表 : 产品表 21 create table product 22 ( 23 id int primary key identity(1,1), -- 主键标识,从1开始,步长1增长 24 name nvarchar(20) not null, 25 price decimal default 0.00, -- price的值默认为0.00 26 number int default 0, 27 c_id int foreign key references classify(id) -- 外键引用 28 ) 29 30 31 -- 删除表 32 drop table classify 33 drop table product 34 35 36 -- 查询表中的数据 37 select * from classify 38 select * from product
SQLServer - 创建表/插入数据
内容版权声明:除非注明,否则皆为本站原创文章。