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

Comment sélectionner une ligne avec une valeur maximale pour une colonne dans MySQL ?

Supprimer CC colonne de group by . Essayez ceci.

SELECT t.* FROM  t
     JOIN (
       SELECT 
    t.id
    ,max(t.count) as max_slash24_count
    FROM t 
    group by t.id
      ) highest
     ON t.count = highest.max_slash24_count
  and t.id= highest.id