charlie clark <charlie(at)begeistert(dot)org> writes:
> is there a simple way to change the way ORDER BY works on columns with
> NULLs?
No, but you can do something like
ORDER BY foo IS NOT NULL, foo DESC
to make the nulls come first.
regards, tom lane