Skip to content
Advertisement

Finding the last person working on a project (grouping/having sql?)

I’m trying to figure out how to query the last person (name) who last (date) worked on a project (project).

Content TableA

What I need to have as a result would be in this case:

What I’ve got so far is:

This will get met the project and date but not the id and name of the person.

This will (obviously) result in the error

Column ‘id’ is invalid in the HAVING clause because it is not contained in either an aggregate function or the GROUP BY clause.

I’m a bit rusty and lost.

Advertisement

Answer

You need a row_number() :

If date has ties, then you need dense_rank() instead.

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