PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

Postgres, table1 left join table2 avec seulement 1 ligne par ID dans table1

DISTINCT ON est votre ami.

select distinct on (user_id) * from user_stats order by datestamp desc;