城院数据库系统原理实验9.pdf

  1. 1、本文档共9页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
分别用相关子查询和不相关子查询,查询没有生成过订单的员工姓名. select LastName,FirstName from Employees where not exists( select * from Orders where Employees.EmployeeID=EmployeeID ) select LastName,FirstName from Employees where EmployeeID in( select EmployeeID from Orders where Employees.EmployeeIDOrders.EmployeeID ) 查询自己下级生成的订单数量最多的员工.(注:每个下级员工的订单数和最 ) select employeeid from Employees where employeeid in( select employeeid from orders group by employeeid having count(orderid)=all( select count(orderid) from orders group by employeeid) )and reportsto is not null 查询订单最多的城市名称。 select shipcity from Orders group by shipcity having count(orderid)=all( select count(orderid) from Orders group by shipcity) 查询订单数量最多的产品的供应商 select companyname from suppliers where supplierid in( select supplierid from products where productid in( select productid from [orderdetails] group by productid having count(orderid)=all( select count(orderid) from [orderdetails] group by productid))) 查询订单金额最高的员工姓名 select LastName,FirstName from Employees where employeeid in( select employeeid from orders where orderid in( select orderid from [orderdetails] where quantity*Unitprice=( select max(quantity*Unitprice) from [orderdetails] ))) 查询产品种类数最多的供应商名称 select supplierid from products group by supplierid having count(productid)=all( select count(distinct productid) from products group by supplierid) 将订单数最多的员工的备注信息改为”优秀员工” update employees set notes=优秀员工 where employeeid in( select employeeid from orders group by employeeid having count(orderid)=all( select count(orderid) from orders group by employeeid)) 通过一个 SQL 语句建立表,字段包括产品 ID,产品名称,订单中产品总量(其中产品 ID 为主码), 并通过一个 SQL 语句填充这张表. insert into chanpin select b.productid,a.productname,count(quantity) from [OrderDetails] b,products a where a.productid=b.productid group by b.productid,a.productname 在员工表中找一个员工,删除这个员工相关的所有数据(多个 SQL 语句) select * from employees select * from orders where employeeid=8 delete from employe

文档评论(0)

wx171113 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档