Count number of managers (MGR column) and their salary in emp table.
SELECT COUNT(MGR), COUNT(Sal) FROM emp;