数据库语句书写顺序和执行顺序

书写顺序:

select 
from
where
group by
having
order by
limit

执行顺序:

from
where
group by
having
select
order by
limit

  

原文地址:https://www.cnblogs.com/qq1445496485/p/14287309.html