SQL关键字的执行顺序
Posted diyo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL关键字的执行顺序相关的知识,希望对你有一定的参考价值。
1.mysql执行顺序,即在执行时sql按照下面的顺序进行执行:
from on join where group by having select distinct union order by
2.Mysql语法顺序,即当sql中存在下面的关键字时,它们要保持这样的顺序:
select[distinct] from join(如left join) on where group by having union order by limit
groupby:groupby要和聚合函数一起使用
union:完全是对select的结果进行合并(默认去掉重复的记录)(想保留重复记录使用union all)
以上是关于SQL关键字的执行顺序的主要内容,如果未能解决你的问题,请参考以下文章