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
How do you declare a variable in pl sql?
What are the most important ddl statements in sql?
what is the difference between primary key and unique key? : Sql dba
How many primary keys can a table have?
What packages are available to pl/sql developers?
Explain correlated query work?
What is the difference between joins?
what is a unique key ? : Sql dba
Is sql a case sensitive language?
Can we create a trigger on view?
How many types of triggers are there in pl sql?
Explain what is rdbms?
How long it takes to learn pl sql?
name 3 ways to get an accurate count of the number of records in a table? : Sql dba
What is schema in sql example?