A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
Hello,
Aggregate on Event to get the first (lowest/min) date and then JOIN, like
;WITH cte AS
(SELECT Event, MIN(Date) AS MinDate
FROM yourTable AS T
GROUP BY Event)
SELECT T.*
FROM yourTable AS T
INNER JOIN
cte
ON T.Event = cte.Event
AND T.Date = cte.MinDate