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 / abc
SELECT name FROM student_table
GROUP BY name
HAVING ( COUNT(name) > 1 );
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How to delete all rows a table in oracle?
What is backup in Oracle?
What happens to indexes if you drop a table?
What are the various types of snapshots ?
What is the difference between alert log file and tarce file ?
Explain the characteristics of oracle dba?
What is oracle join syntax?
how to join query for one source type is oracle another source type is sql server ?
How do I escape a reserved word in oracle?
In what script is snap$ created? In what script is the scott/tiger schema created?
How to insert multiple rows with one insert statement in oracle?
Can we write insert statement in function in oracle?
What is the relation of a user account and a schema in oracle?
How to write a query with a left outer join in oracle?
What is Undo Management Advisor in Oracle?