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

MySQL sql 执行步骤

时间:2014-11-14 22:30:14      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:使用   sp   for   div   on   bs   as   sql   nbsp   

基本步骤是 
1.from 
2.join on 
3.where 
4.group by 
5.having 
6.order by 
7.select 
8.distinct ,sum,... 
9.limit 
 
join table 一定要有索引不然就是笛卡尔积了。
inner join 的特别
正确来讲 mysql 会先base on where 的过滤条件选出最好的table join table 方式 。 那么它是会先过滤掉 where 才开始join 的for 1st table .
不过我们通常是用 straight join 来控制它,以免我们不知道最后会是那个表被join出来 . 
having 是过滤掉 group by 之后的rows , 这时候的过滤可以使用count sum 那些,在where时候是不能使用的。

MySQL sql 执行步骤

标签:使用   sp   for   div   on   bs   as   sql   nbsp   

原文地址:http://www.cnblogs.com/supertang/p/4096993.html

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