一 1. create database 员工管理 2. use 员工管理 create table 员工管理 (员工编号int identity(1,1) not null primary key, 姓名char(8) not null, 性别char(2) not null default'男', 年龄int not null check(年龄>=17 and 年龄<=23), 家庭住址varchar(50), 职位char(20) not null) 二 2. select * from 类别 3. select * from 产品join 类别 on 产品.类别id=类别.类别id where 类别名称='调味品' and 库存量=0 4. select * from 产品 where 产品名称like '%奶%' 5. select * from 订单 where 订单id=10248 6. select 产品.产品id,产品.产品名称,订单明细.单价,订单明细.数量,订单明细.折扣,订单.运货费 from 产品join 订单明细 on 产品.产品id=订单明细.产品id join 订单 on 订单明细.订单id=订单.订单id join 类别 on 类别.类别id=产品.类别id where 类别名称='海鲜' 三 1. create view view_1 with encryption as select 产品.产品id,产品.产品名称,类别.类别id,类别.类别名称,供应商.供应商id,供应商.公司名称 from 产品join 类别 on 产品.类别id=类别.类别id join 供应商 on 产品.供应商id=供应商.供应商id 2. create proc proc_1 @类别名称nvarchar(15), @单价money=10, @库存量smallint, @订购量smallint=10 as select 产品.* from 类别join 产品 on 产品.类别id=类别.类别id where 类别名称=@类别名称and 单价>@单价 and 库存量>@库存量and 订购量>@订购量 本文来源:https://www.wddqw.com/doc/f36669da5cbfc77da26925c52cc58bd6318693f7.html