1、实验环境。
某公司有一台已经安装了SQL Server 2016的服务器,并已经创建了数据库PM。
2、需求描述。
在数据库PM中创建表products,"编号"列的值自动增长并为主键。然后使用T-SQL语句为表格插入如下数据。
3、实验步骤。
1、使用SSMS管理工具连接数据库,然后右键点击PM数据库--点击查询。
2、使用以下命令创建表products。
3、使用以下命令将数据插入到表products中。
4、使用以下命令查看表products。
4、命令参考。
##创建数据表products
create table products
(
编号 int identity(1,1) primary key,
名称 nvarchar(50) not null,
种类 nvarchar(50) not null,
成本 money not null,
出厂日期 date not null
)——————————————————————————————##插入数据到products表中
insert into products(名称,种类,成本,出厂日期)
values
('西瓜','水果',4.1000,'2017-05-06'),
('芹菜','蔬菜',1.0000,'2017-04-01'),
('番茄','蔬菜',2.9000,'2017-05-09'),
('黄瓜','蔬菜',2.2000,'2017-05-05'),
('香蕉','水果',6.1000,'2017-05-23'),
('樱桃','坚果',28.5000,'2017-06-02'),
('开心果','坚果',38.1100,'2017-06-21'),
('蓝莓','水果',50.2000,'2017-05-15')——————————————————————————————##查询products表中的数据
select * from products