MySql教程

mysql关键字执行顺序

本文主要是介绍mysql关键字执行顺序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

​ SQL查询中用到的关键词:select、distinct、from、join、on、where、group by、having、sum、count、max、avg、order by、limit

书写顺序:

​ select->distinct->from->join->on->where->group by->having->order by->limit

​ 必须字段:select、from

​ 可选字段:distinct、join、on、where、group by、having、sum、count、max、avg、order by、limit

执行顺序

​ from->on->join->where->group by(开始使用select中的别名,后面的语句中都可以使用别名)->sum、count、max、avg->having->select->distinct->order by->limit
————————————————
版权声明:本文为CSDN博主「低僧」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_34512248/article/details/113032162

这篇关于mysql关键字执行顺序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!