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

Cómo seleccionar filas DISTINTAS sin tener seleccionado el campo ORDENAR POR

SELECT s.pID
FROM students s JOIN mentors m ON s.pID = m.pID   
WHERE m.tags LIKE '%a%'
GROUP BY s.pID
ORDER BY MAX(s.sID) DESC