针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。查询这样的订单号,该订单的订货数量大于3月份所有订单的订货数量。select (____) from (____)(____) (____) > (____) (select (____) from (____)(____) (____) = (____))
针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。向产品表中增加一个产品,名称为粉笔、编号为P20、单价为1.50、销售数量为25000。(____) (____) Products(____)((____),’粉笔’,(____), 1.50)
针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。将所有单价大于1.00的产品单价增加10%。(____) (____)(____) (____)= Price+0.50where (____)=1.00
针对教材中的4个表(Orders、Products、Customers、Agents)用SQL语句完成各项操作,在“()”内填答案。将所有由上海代理商代理的笔袋的订货数量改为2000。(____) (____)(____) Qty=2000(____) (____) = ((____) (____) (____) (____) (____) City= (____)) and Pid=(select (____) from (____) where (____) = (____))