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'
Dette fungerede for mig, da jeg skulle vælge første og sidste dato i begivenhedsserien.