CBSE Class 12 Informatics Practices Question 18 of 79

Database Query using SQL — Question 10

Back to all questions
10
Question

Question 10

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

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