check whether all the emp numbers are indeed unique.
Answer Posted / eswar
select empno,count(empno)
from emp group by empno having count(empno)>1;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the use of stored procedures?
What is sql resultset?
What is the difference between microsoft access and sql?
Cite the differences between execution of triggers and stored procedures?
How do I sort a table in sql?
What is the left table in sql?
What is the largest value that can be stored in a byte data field?
Do we need to rebuild index after truncate?
What is %s in sql?
What does stand for in sql?
How to Execute a Package in PL/SQL.?
What are reports usually used for?
what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba
What is coalesce in sql?
How many aggregate functions are available there in sql?