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'
Dies hat bei mir funktioniert, als ich das erste und das letzte Datum in der Ereignisserie auswählen musste.