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 / u.radha
SELECT STUD_NAME,COUNT(*) FROM STUDENT GROUP BY STUD_NAME
HAVING COUNT(*) > 1
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
How to create an oracle database manually?
Explain the types of exception?
How to define default values for formal parameters?
IS it possible to built the oracle database without setting the kernal parameters?
How to create tables for odbc connection testing?
Why do I get java.lang.abstractmethoderror when trying to load a blob in the db?
What is instant client oracle?
Explain the different normalization forms?
Is oracle a programming language?
What is a read write transaction in oracle?
How to delete a user account in oracle?
What is a table in oracle?
Write a trigger example in oracle?
How to estimate disk space needed for an export job?
What privilege is needed for a user to connect to oracle server?