NULLs Position
The keyword NULLS
defines where NULL in the associated column will fall in the sort order: NULLS FIRST
places the rows with the NULL
column above rows ordered by that column’s value;NULLS LAST
places those rows after the ordered rows.
NULLS FIRST
is the default.