Write a query in SQL to find the number of employees are performing the duty of a manager
- برمجة سي كيو ال sql
- 2021-09-07
- mhanasmh00489829403
الأجوبة
SELECT count(DISTINCT m.emp_id)
FROM employees w,
employees m
WHERE w.manager_id = m.emp_id ;
Sample Output:
count ------- 6
(1 row)
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال