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 / neha_gupta
select ename,count(1) from student
group by ename
having count >1
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
How to invoke the data pump import utility?
How to define a cusotmer as a supplier in ORACLE R12
What is background process in Oracle?
Which dictionary tables and/or views would you look at to diagnose a locking issue?
Explain an exception?
What is control file used for?
Hi Masters, in Oracle Applications 11i, we hace 2 functions using the same form, i need to create 1 personalization, but that code must afect only one function.... how can i do that?
What is a tns file?
How to use group functions in the select clause using oracle?
How to use subqueries with the in operator using oracle?
What is bulk load in oracle?
How to create a single index for multiple columns?
what is the scripts in data base?
What is the exact use of Collections?
Why does for update in oracle 8 cause an ora-01002 error?