Quote:
Originally Posted by r937
in most database systems, yes
|
Most databases allow me to control that with "NULLS FIRST" or "NULLS LAST" in the order by clause
Quote:
|
in oracle it's the other way around
|
Only for ASC sort, for DESC sort it's the other way round. PostgreSQL, DB2 and Derby behave the same way.
I had to look this up now
According to the standard, it's left to the DBMS on how to behave is neither NULLS FIRST nor NULLS LAST is specified:
Quote:
|
Originally Posted by SQL Standard
If <null ordering> is not specified, then an implementation-defined <null ordering> is implicit.
|