Con esto sale si o si :) tienes que usar INNER JOIN SELECT t1.num_emp,t1.fecha,area_cambio FROM CAMBIOS as t1 INNER JOIN ( SELECT num_emp,MAX(fecha)as fecha FROM CAMBIOS GROUP BY num_emp)as t2 ON t1.fecha = t2.fecha AND t1.num_emp = t2.num_emp ORDER...