Hi again guys, i'd like to get this query to bring the result in one single query instead of 2 separate results, can you please explain how this can be done? I did some online research but found nothing that could help.
SELECT TOP 5 EventName AS 'Earliest events', EventDate FROM tblEvent ORDER BY EventName ASC SELECT TOP 5 EventName AS 'Latest events', EventDate FROM tblEvent ORDER BY EventName DESC