Exercise 01

First Touch

Marketing wants to know each user's first touch — the first event they ever logged on the site. They're trying to figure out which channel actually pulled people in.

Table: events(user_id, event_type, event_time).

Return one row per user with their `user_id`, the `event_type` of their earliest event, and the `event_time` of that event.

Your query