R
Ros@
I'm trying to make an SQL query in Access like that:
SELECT MAX(COUNT(*)) FROM ALUMNOS
GROUP BY POBLACION;
I want to obtein which is the POBLACION with more alumnos, but I get an
error "You can't put a group by function in the expresion"
The same query has success in Oracle.
Is there any way to solve this in Access?
Thank you.
SELECT MAX(COUNT(*)) FROM ALUMNOS
GROUP BY POBLACION;
I want to obtein which is the POBLACION with more alumnos, but I get an
error "You can't put a group by function in the expresion"
The same query has success in Oracle.
Is there any way to solve this in Access?
Thank you.