Postgresql – SQL select 1 row out of several rows that have similar values
I have a table like this: ID OtherID Date 1 z 2022-09-19 1 b 2021-04-05 2 e 2022-04-05 3 t 2022-07-08 3 z 2021-03-02 I want a table like this: ID OtherID Date 1 z 2022-09-19 2 e 2022-04-05 3…