sql >> Base de Datos >  >> RDS >> Mysql

¿Cómo uso group by con tres columnas de datos?

podrías hacer

select s.x, s.mz, stuff.y 
from (select x, max(z) as mz from stuff group by x) s 
  left join stuff on stuff.x = s.x and stuff.z = s.mz;