欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Oracle中where,groupby,having,orderby语句的执行顺序

程序员文章站 2022-07-04 09:28:49
oracle中where,groupby,having,orderby语句的执行顺序 select xxx_name, count(*) as counter from table_y...

oracle中where,groupby,having,orderby语句的执行顺序

select xxx_name, count(*) as counter  
from table_y  
where where_condition  
group by xxx_name  
having having_condition  
order by zzz

当我们看到一个类似上述的包含了where, group by, having, order by等关键字的sql时,我们要首先要知道其执行顺序是怎样的,才能判断出其所表达的含义;

下面列出其执行顺序: 先连接from后的数据源(若有join,则先执行on后条件,再连接数据源)。

1. 根据where子句选择行;

2. 根据group by 子句组合行;

3. 根据having子句筛选组;

4. 根据order by子句中的分组函数的结果对组进行排序,order by必须使用分组函数或者使用group by子句中指定的列;