标签:name where 多次 客户 语句 customer tac 相同 custom
1、使用表别名
好处:
a、缩短SQL语句。
b、允许在单条SELECT语句中多次使用相同的表。
输入:
SELECT cust_name,cust_contact
FROM customers AS c,orders AS o,orderitems AS io
WHERE c.cust_id = o.cust_id
AND io.order_num = o.order_num
AND prod_id = ‘TNT2’;
注:
a、表别名不仅能用在WHERE子句,还可以用在SELECT的列表、ORDER BY子句,以及语句的其他部分。
b、表别名和列别名不一样,它不会返回到客户机。
2、使用不同的联结类型
标签:name where 多次 客户 语句 customer tac 相同 custom
原文地址:http://www.cnblogs.com/Hystudio-lzu/p/6892181.html