Skip to content
Advertisement

How to update a date column based on proceeding order?

I have a table that contains three different status’

CLICKED > CLAIMED > BOUGHT (this is the correct order)

(see table below for example)

For each number_id, I need each of these status datetime to be in a separate COLUMN.

In the last query, I need the query to have the LAST status based on the updated_at_datetime, and each of the status’ update_at_datetime in their own COLUMN.

Currently, the query says if the status for that number_ID is NOT FOUND, then to default this value to = ‘2999-12-31’

However, now I need the query to be updated to say that IF the status for clicked is not found, to update the clicked_datetime based on the following status.

For example, IF update_at_datetime of the status CLICKED is not found, (instead of updating the clicked_datetime to ‘2999-12-31’) then update this date to match update_at_datetime of the CLAIMED STATUS. IF the CLAIMED status is also not found, then update the clicked_datetime to match update_at_datetime of the bought STATUS.

CLICKED_DATETIME should always have a VALID date, since we can match it with the datetime of the status = ‘claimed’ and if status ‘claimed’ is also not found, update the clicked_datetime of the update_at_datetime of the status = ‘bought’

IF update_at_datetime of the status of CLAIMED OR BOUGHT is not found then we can default this value to ‘2999-12-31’.

Can someone help me modify the last query to take this into account?

Advertisement

Answer

Seems easy enough?
Just add more to the coalesce.

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