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