Vincenzo Melandri, 15.02.2013 11:14:
> I stepped into the same problem as this guy from 2005.
> Is this problem changed in the last 8 years? :)
> Can it be changed from settings now?
You can use the SQL standard NULLS LAST/NULLS FIRST operator
select *
from foo
order by bar desc nulls last
select *
from foo
order by bar desc nulls first