数据库
首页 > 数据库> > MySQL中GROUP BY和ORDER BY使用别名

MySQL中GROUP BY和ORDER BY使用别名

作者:互联网

前置知识


GROUP BY 和 ORDER BY 后使用别名

GROUP BY 后使用别名

select 
    case 
        when t.author_level in(1,2) then '1-2级'
        when t.author_level in(3,4) then '3-4级'
        when t.author_level in(5,6) then '5-6级'
        else '' 
    end as level_cnt,
    count(s.issue_id) as num
from author_tb t join answer_tb s on t.author_id = s.author_id 
where s.char_len >= 100
group by level_cnt
order by num desc

等价于

select 
    case 
        when t.author_level in(1,2) then '1-2级'
        when t.author_level in(3,4) then '3-4级'
        when t.author_level in(5,6) then '5-6级'
        else '' 
    end as level_cnt,
    count(s.issue_id) as num
from author_tb t join answer_tb s on t.author_id = s.author_id 
where s.char_len >= 100
group by 
    case 
        when t.author_level in(1,2) then '1-2级'
        when t.author_level in(3,4) then '3-4级'
        when t.author_level in(5,6) then '5-6级'
        else '' 
    end 
order by num desc

ORDER BY 后使用别名

如果在 GROUP BY 和 ORDER BY 中重复使用相同的别名,别名的表达式是否会重复执行。答案是否定的,除非 GROUP BY 和 ORDER BY 中表达式不一样(内容或者内容顺序不一样都会导致结果不同)

确实没有重复执行。如果将 ORDER BY 的内容改一下,使之与别名的语句不相同(因为 @i := 1 + @i 不等价于 @i := @i + 1)

执行顺序验证

create table if not exists employee (id int, salary int);
insert into employee (id, salary) values ('1', '100');
insert into employee (id, salary) values ('2', '200');
insert into employee (id, salary) values ('3', '300');

设置两个变量 @i 和 @s,其中 @i 根据 @s 变化进行赋值,而 @s 在 @i 赋值之后赋值。

即正常的赋值顺序为:@i => @s

 

如果加上别名排序(可以看到 @s 的赋值发生在了 @i 之前)

 

如果加上 GROUP BY(赋值顺序又正常了,可以确定:执行顺序为先  GROUP BY 后 ORDER BY)

 


参考:https://www.programminghunter.com/article/41922302413/

标签:GROUP,level,author,别名,ORDER,MySQL,id
来源: https://www.cnblogs.com/52-IT-y/p/16558247.html