Informatics Practices

Count number of managers (MGR column) and their salary in emp table.

SQL Queries

3 Likes

Answer

SELECT COUNT(MGR), COUNT(Sal) 
FROM emp;

Answered By

1 Like


Related Questions