码迷,mamicode.com
首页 > 数据库 > 详细

【MySQL必知必会】第十六章 创建高级联结

时间:2017-05-23 01:15:45      阅读:234      评论:0      收藏:0      [点我收藏+]

标签: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、使用不同的联结类型

  

【MySQL必知必会】第十六章 创建高级联结

标签:name   where   多次   客户   语句   customer   tac   相同   custom   

原文地址:http://www.cnblogs.com/Hystudio-lzu/p/6892181.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!