Informatics Practices

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

SQL Queries

1 Like

Answer

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

Answered By

1 Like


Related Questions