Skip to content
Advertisement

Add the last appearance to table

I have two tables (for example)
table1 will contain stores, there are 2 types ‘candy store’ and ‘dental store’. Each row contains information about a customer’s purchase in a particular store

table1 ( purchases ):

table2 ( type ):

I want my query to return a table like this:

where

  • [the last place] is the last store where client bought smth;

  • [the last date c] – the last date of buying in candy’s shop

  • [the last date d] is the last date of buying in dental shop

and delete rows if no any matches(all values are null)

Advertisement

Answer

You can use conditional aggregation and join:

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