Q1.all the depts which has more then 10 empls?
Q2.all the dept which does not have any emply?
Q3 all the emp which does not have any dept?
Q4 get all the emply detais with the dept details it dept is
exit otherwise any emp details?
Q5 how to debugg the dynamic sql and packages?
Answer Posted / girija shankar dash
ANS-2:
SELECT department_id,COUNT(employee_id) AS "NO. OF EMPLOYEES"
FROM employees
GROUP BY department_id
HAVING COUNT(employee_id) = 0;
DEPARTMENT_ID NO. OF EMPLOYEES
201 0
311 0
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is dml with example?
What are the different operators available in sql?
What are sql indexes?
how to use in conditions? : Sql dba
What are analytic functions in sql?
Can you rollback after commit?
what is blob? : Sql dba
What does select top 1 do in sql?
Are views faster than queries?
Is sql easier than java?
What is program debugging?
What is sap sql?
How to read xml file in oracle pl sql?
How do temporal tables work?
What is the difference between mdf and ndf files?