write a query to dispaly those name who is more than one in
student table?
example- in a student table sandeep kumar comes 4 times,
rakesh kumar comes 2 times, ajit kumar comes 1 times so
query will display sandeep kumar and rakesh kumar single
times.
Answer Posted / dheer
select v_id from dup where rowid not in (select max(rowid)
from dup group by v_id);
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the use of consistent option in exp command.
What are joins, explain all types of joins?
How can you use check constraints for self referential integrity?
What is merge statement used for?
How do we create privileges in oracle?
What is analyze command used for?
List out the difference between commit, rollback, and savepoint?
What will be the syntax to find current date and time in format "yyyy-mm-dd"?
How to rename an index?
What is flashback in Oracle?
How to use like conditions in oracle?
Can we call procedure inside function in oracle?
What is tns name?
What is an oracle database table?
What is the scope of a local variable?