SELECT
(SELECT column FROM table WHERE [condition] ORDER BY column LIMIT 1) as 'first',
(SELECT column FROM table WHERE [condition] ORDER BY column DESC LIMIT 1) as 'last'
Questo ha funzionato per me quando dovevo selezionare la prima e l'ultima data nella serie di eventi.