+ 4
In which order we should place the "ORDER BY" & "WHERE CLAUSE" ??
3 Réponses
+ 12
I think the correct sequence to use some of the common commands is
Select
From
Where
Group By
Having
Order by
0
ORDER BY always at the end of statement.
0
select
distinct
count
from
where
group by
having
order by