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 is the difference between primary key and unique key? : Sql dba
what is an execution plan? When would you use it? How would you view the execution plan? : Sql dba
How to Declare Fixed Length String Value In PL SQL
what are integrity rules?
What is snowflake sql?
How does postgresql compare to "nosql"?
Why we use stored procedure instead of query?
Is sql better than excel?
What are the three pl sql block types?
What type of join is sql join?
How to install oracle sql developer?
How do you optimize a query?
Why do we need a foreign key?
What is data type in database?
What are few of the schema objects that are created using PL/SQL?