Skip to content
Advertisement

How to use SQL find first matching result from one table in another table?

Suppose I had two tables:

What I want to do is write a query that will find the first sale for each customer. I am not sure exactly how to do it. I feel like this is group by problem, but the answer is not coming to me.

EDIT: I feel like my first data table did not fully explain my problem. (Honestly, I didn’t even realize this facet of my problem until, I was coding the solution) Note: There is more than one customer per sale.

Advertisement

Answer

You can use a subquery which assigns a row number to each sale for each customer, ordering by ascending date, and then select only the first rows:

Demo on SQLFiddle

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