Skip to content
Advertisement

SQL Query to return all rows with the earliest date available for each year

I am trying to design a SQL query that can return the records for the earliest date in each year. Suppose I have a table as follows:

I am trying to generate a table shown below:

The earliest date for each year will change, which means I cannot simply query by day & month. I have tried using:

But this results in an aggregate error: ‘Category’ is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause

What would be the best way to achieve this?

Advertisement

Answer

A simple way is a correlated subquery:

You can also use row_number():

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