sql语句顺序
2019-04-18 本文已影响0人
唯死撑尔
sql顺序分为两类:
1.sql的书写顺序
select from where group by having order by [asc/desc]
2.sql的执行顺序
from where group by having select order by [asc/desc]
sql顺序分为两类:
select from where group by having order by [asc/desc]
from where group by having select order by [asc/desc]