题目内容

针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。查询订货数量在500~800的订单情况。select * from Orders(____) (____) (____)500 (____) (____)

查看答案
更多问题

针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。查询产品名称中含“水”字的产品名称与单价。select Pname (____),Price (____) from Productswhere (____) (____) (____)

针对教材中的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

答案查题题库