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
What is the quickest way to export a table to a flat file?
What are the limitations oracle database 10g xe?
Explain an index?
What is a nested table?
Can a parameter be passed to a cursor?
Difference between cartesian join and cross join?
how to make an oracle object
What is raw datatype in oracle?
How can we find out the duplicate values in an oracle table?
How does Oracle guarantee data integrity of data changes?
How to get execution statistics reports on query statements?
How to call a sub procedure?
How to assign values to variables?
How to create a new table by selecting rows from another table?
How to define a variable of a specific record type?