Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT event_type,
MIN(event_id) AS "TheOne"
FROM MyParty
WHERE event_date BETWEEN @dtBegin AND @dtEnd
GROUP BY event_type
SELECT event_name, event_description
FROM MyParty a
JOIN (
SELECT event_type,
MIN(event_id) AS "TheOne"
FROM MyParty
WHERE event_date BETWEEN @dtBegin AND @dtEnd
GROUP BY event_type
) b ON b.TheOne = a.event_id