6.删除汇款方式为“邮政汇款”的所有订单信息 delete from orders where '邮局汇款'=
(select p_mode from payments where orders.p_id=payments.p_id)
课堂实践6 p139
1.使用联合查询了解webshop数据库的goods表中折扣为0.8和价格在1500以下的商品信息 select * from Goods
where g_Discount=0.8
union(将多表查询连接起来,并去掉重复值) select * from Goods where g_Price<1500 第七章
课堂实践1 p174
5.在employees表中创建基于e_name列的非聚集索引idx_ename create nonclustered index idx_Ename