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


Please Help Members By Posting Answers For Below Questions

How many file formats are supported to export data?

659


What happens if you lost a data file?

580


HI, Please let me know the syllabus for Oracle OCA and OCP Certification

1951


How to write an inner join with the where clause in oracle?

583


What is a cognitive schema?

527






Explain the difference between sql and oracle?

582


Explain rename?

554


How i can handle exception in large code like 1000 line without distrubing the code or without exception handler sction?

2728


How to initialize variables with default values?

634


Explain the use of owner option in exp command.

569


What are the varoius components of physical database structure of oracle database?

567


Please send me Informatica 8.1 certification dumps, my mail id mona85gupta@gmail.com

1438


What happens to the current transaction if the session is killed?

536


How do I find my oracle client driver version?

528


11. Display the client number and name and the client number and name of the person who referred that client.

1920