Skip to content
Advertisement

Select row in group with largest value in particular column postgres

I have a database table which looks like this.

I need to group this table by id and select particular row where time_point has a largest value.

Result table should look like this:

Thanks for help, qwew

Advertisement

Answer

In Postgres, I would recommend distinct on to solve this top 1 per group problem:

However, this does not allow possible to ties. If so, rank() is a better solution:

Or, if you are running Postgres 13:

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