I have a table with an event date column. I want to return records in an order in which first the most recent upcoming records show up and when all the upcoming records are over, the past records should show up with the latest passed first.
For that, I was planning to first get records with event date > GETDATE()
sorted in ascending order and merging it with the rest of the records in decreasing order of event date.
As specifying 2 ORDER BY
clause is not possible in UNION
, what approach could be used in this.
Summarizing, my query wants results like:
SELECT EventName, EventDate
FROM EventTable
WHERE EventDate>GETDATE()
ORDER BY EventDate
UNION ALL
SELECT EventName, EventDate
FROM EventTable
WHERE EventDate<=GETDATE()
ORDER BY EventDate DESC