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 / abrar yaseen
select student_name from student group by student_name
having count(OCCURANCE) > 1
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How to download oracle database 10g xe?
How to upsert (update or insert into a table)?
How to insert a record into a table?
What is the quickest way to export a table to a flat file?
Can we use oracle pl/sql block in core java? if so how? pls get back to me .....
Difference between inner join vs where ?
List out the types of joins.
How a tablespace is related to data files?
How to create a table index?
What is the sid in oracle?
How to return top 5 rows in oracle?
Difference between cartesian join and cross join?
How to run create database statement again?
How to create a stored procedure in oracle?
How to create a new table by selecting rows from another table?