check whether all the emp numbers are indeed unique.
Answer Posted / nagendra
select empno, count(empno)
from emp
group by empno
having count(empno) > 1;
| Is This Answer Correct ? | 22 Yes | 4 No |
Post New Answer View All Answers
What are the conditions an underlying table must satisfy before a cursor can be used by a positioned update or delete statement? : Transact sql
what is the difference between char_length and length? : Sql dba
What does subquery mean in sql?
What is synchronized subquery?
What plvcmt and plvrb does in pl/sql?
Where do we use pl sql?
How to run sql functions in pl/sql?
Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?
Explain polymorphism in pl/sql.
What is the process of debugging?
What is oracle and pl sql?
Which are the different types of indexes in sql?
What is a dynamic query?
What is the starting oracle error number? What is meant by forward declaration in functions?
how to drop an existing view in mysql? : Sql dba