Database / SQL
How do I order NULLS first while performing ascending order in SQL?
Extend the order by clause to include an optional NULLS FIRST or NULLS LAST clauses as shown below.
SELECT * FROM Employee ORDER BY dept_id ASC NULLS FIRST; SELECT * FROM Employee ORDER BY dept_id DESC NULLS LAST;
More Related questions...