from——where——group by——having——select——distinct——order by——limit
代码块
select * from student where class='ec14' group by gender having age>18 order by name desc LIMIT 5
1.找到表:from
2.拿着where指定的约束条件,去文件/表中取出一条条记录
- 将取出的一条条记录进行分组group by,如果没有group by,则整体作为一组
4.将分组的结果进行having过滤
5.执行select
6.去重distinct
7.将结果按条件排序:order by(asc/desc)
8.limit前多少条
原文地址:https://www.cnblogs.com/hellosiyu/p/12501668.html
时间: 2024-10-16 02:29:08