So Oracle has NULLS FIRST, which I can use to have null values sorted at the top followed by my column value in descending order:
ORDER BY date_sent NULLS FI
ORDER BY COALESCE(POSTING_DATE,'1900-01-01 00:00:00.000') ,OTHER_FIELDS