Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Maximale Reihe in der Gruppe bekommen?

Verwenden Sie den MAX -Operator und Gruppierung nach UID .

SELECT MAX(t.ID), t.UID
FROM yourtable AS t
GROUP BY t.UID;