题目内容

针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。查询姓王且名字为两个字的客户在1月份的订单情况,并按订货数量降序排列。select * from (____) where (____) = (select Cid from (____)where Cname=(____)) and (____) =(____)(____) (____) (____) (____)

查看答案
更多问题

针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。查询每个月的订单数、总订货数量以及总金额,要求赋予别名,并按月份降序排列。select (____) 月份, (____)(*) 订单数,(____) 总订货数量,(____) 总金额from (____)(____) by (____)(____) by (____) (____)

针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。查询上海客户总订货数量超过2000的订货月份(10)。select (____) from (____)where Cid (____)(Select (____) from (____)where City = (____))(____) (____) Months(____) (____)> 2000

针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。查询各个产品的总订货数量以及总金额。Select Pname 产品名称, (____) 总订货数量, (____) 总金额from (____) (____) (____) Pname

针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。查询没有通过北京的代理订购笔袋的客户编号与客户名称。select (____) o.Cid,Cname from (____) (____),Customers c(____) o.Cid=c.Cid and Aid (____) (____)(select (____) from (____)where City=(____)) and Pid (____) in (select Pid not in (select (____) from Productswhere Pname= (____))

答案查题题库