Skip to content
Advertisement

Create a stored procedure such that rows with same key are converted into a column

You are given the table tracks, which contains the following columns:

  1. received_at: the unique timestamp of the action
  2. event_name: the name of the action that was performed at this time
  3. anonymous_id: the anonymous ID of a user
  4. user_id: the user ID, which can be null

This is the mentioned DDL for the problem.

Task is to find two events for each anonymous_id, which will be the column anonym_id in the returned table. Find the last event where the user was tracked only by anonymous_id (column last_null) and the first event that was tracked by user_id (column first_notnull). The resulting table should be sorted by anonym_id.

As mentioned according to the problem statement this is the desired outcome.

We have tried achieving the outcome using UNION on two different query resultset as shown but still not able to get the desired outcome.

Can Someone throw light on how to come to the desired outcome? How to get the outcome in the most efficient less time-consuming way?

Advertisement

Answer

First find out the min and maxs (sub query s) then use conditional aggregation

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement