Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como selecionar uma linha com valor máximo para uma coluna no MySQL?


Remover CC coluna de group by . Tente isso.
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