I do not know what title to put to ask this question so all help to get this question resolved is welcome.
The result I want to get is the depto_no of the department with the most employees, that is:
I started doing:
SELECT depto_no,count(*) FROM empleado GROUP BY depto_no;
Which gets the following and maybe serves as a subquery to get to the result I want:
But I do not know how to proceed.