Ver originalSELECT * FROM ciudad AS t1LEFT JOIN (SELECT MAX(poblacion) AS poblacion FROM ciudad) AS t2 ON (t1.poblacion=t2.poblacion)