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 types of subqueries?
How do you know if a relationship is 2nf?
What is the example of procedure?
How to rename a column in the output of sql query?
how can we destroy the cookie? : Sql dba
What programs use sql?
what is offset-fetch filter in tsql? : Transact sql
How do I install microsoft sql?
Which command is used to call a stored procedure?
how to do backup entire database? : Transact sql
How do I view stored procedures?
What are the different types of constraints?
What is number function in sql?
What is data modelling in sql?
how to show all tables with 'mysql'? : Sql dba