Skip to content
Advertisement

Redshift: Find max level of previous mode

I have a user table that store level of each category completion. User can unlock the second and the third category after a few levels of the first category completion.

My goal is to find which level (in first category) they unlocked the other categories.

Note: Data are not original!

Example:

So

Note: Only First category has levels other categories are fixed level (999)

I tried to use Lag() over partition by and take the latest value of the first category level:

and result is:

The problem is when the user repeat lower level again the last value is not the highest level anymore,

So what I would like to this:

Advertisement

Answer

If I understand correctly, you want the previous highest value of level for “First” for each user when they first go to the “next” mode.

You can use a cumulative max to get the previous level for “First” and then distinct on to get only one row per user/mode:

EDIT:

In Redshift, you can do:

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