0 votes
in Sql by
Give the order of SQL SELECT?

1 Answer

0 votes
by

Order of SQL SELECT clauses is: SELECT, FROM, WHERE, GROUP BY, HAVING, ORDER BY. Only the SELECT and FROM clauses are mandatory.

...