Thanks, but I do not want to filter out NULL events -- I just want them to come last.
For example, we have a Flash-based announcements scroller where we have to have all events with dates to appear first, in ascending order, then show all events with NULL dates last (the order for NULLs isn't important). On Oracle, all is well; on MSSQL, the NULLs are appearing first.
-Dain
Main Topics
Browse All Topics





by: geotigerPosted on 2005-05-04 at 08:43:49ID: 13927832
You could avoid it by adding a wher clause:
SELECT * FROM OUR_SCHEMA.TBL_ANNOUNCEMEN
where EVENT_DATE is not null
ORDER BY EVENT_DATE ASC