ImageVerifierCode 换一换
格式:DOCX , 页数:13 ,大小:17.35KB ,
资源ID:15383565      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/15383565.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(祝锡永数据库第七章习题答案Word格式文档下载.docx)为本站会员(b****2)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

祝锡永数据库第七章习题答案Word格式文档下载.docx

1、 select amt from tmp where categoryname=cnameexecute p1 Confections/*2*/drop procedure p2create procedure p2 pname varchar(80)aswith tmp as ( select a.productid,productname,RANK() over (order by sum(amount) as rankid group by a.ProductID ,productname) select rankid from tmp where ProductName=pname e

2、xecute p2 Tofu/*3*/drop procedure p3create procedure p3 tablename varchar(40),cname varchar(40) declare sql varchar(2000) set sql=if not exists (select data_type,character_maximum_length from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME= set sql=sql+tablename+ and COLUMN_NAME= set sql=sql+cname+)+CHA

3、R(13) set sql=sql+char(9)+print +* set sql=sql+elseselect data_type,character_maximum_length from information_schema.columns where table_name= execute(sql)execute p3 Products,ProductName/*4*/drop function f1create function f1(cname varchar(40),year int)returns t1 table(cname varchar(40),month int,nu

4、m int,amt money)begin select companyname,month(orderdate) as xmonth,count(*) as num,sum(amount) as from orderitems a join orders b on a.orderid =b.orderid join customers c on b.customerid =c.customerid where year(orderdate)=year and companyname=cname group by companyname,month(orderdate) insert into

5、 t1(cname,month,num,amt) select companyname,xmonth,num,amt from tmp returnendselect * from .dbo.f1(Alfreds Futterkiste,2009)/*5*/drop function f2create function f2(date datetime)returns t1 table(orderid int,customerid varchar(10),employeeid varchar(10),orderdate datetime,requireddate datetime,invoiv

6、edate datetime,shippeddate datetime,shipperid int,freight decimal(12,2)begin insert into t1 select * from orders where invoicedatedateselect * from .dbo.f2(2008-12-30)/*6*/drop function f3create function f3(cid varchar(10),pid int)returns intdeclare n intselect n=num from (select customerid,count(*)

7、 as from orderitems ajoin orders b on a.orderid =b.orderid where customerid =cid and productid =pid group by customerid) as preturn nselect customerid from customers where mySales.dbo.f3(CustomerID,12)select productid from Products where .dbo.f3(ANTON,productid)/*7*/drop function f4create function f

8、4 (date1 datetime,date2 datetime)returns t table (productid int,productname varchar(100),quantity varchar(40),unitprice money,supplierid int,categoryid int) select productid ,sum(amount) as where orderdate between date1 and date2 group by productid ) insert into t select productid,productname,quanti

9、typerunit,unitprice,supplierid,categoryid from products where productid in (select top 10 percent productid from tmp order by amt desc)select distinct customerid from orders where orderid in (select OrderID from OrderItems where ProductID in (select ProductID from .dbo.f4(2009-1-12009-6-30)/*8*/drop

10、 function f5create function f5(price money)returns varchar(20) declare s varchar(20) if(price =0.01 and price=10.01 and price=20)moderate=20.01 and price=30)semi-expensive=30.01 and price=50)expensive else very expensive return sdrop function f6create function f6(sid int)returns t table(productid in

11、t,pricerange varchar(30)insert into tselect productid,mysales.dbo.f5(unitprice) from products where supplierid=sidreturnselect * from .dbo.f6(2)/*9*/drop table mycustomers drop table myorderitems select * into mycustomers from Customers select * into myorderitems from OrderItems alter table mycustom

12、ersadd amount moneyupdate mycustomers set amount=(select SUM(amount) from OrderItems a join Orders b on a.OrderID =b.OrderID where b.CustomerID =mycustomers.customerid)drop trigger t1create trigger t1 on myorderitems for update as update mycustomers set amount=amount-(select sum(amount) from deleted a join orders b on a.orderid=b.orderidwhere b.customerid =mycustomers.id)update mycustomers set a

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1