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 / gourav
select first_name,count(*) from employees
group by first_name
having count(*)>1;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
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 do you mean by merge in oracle?
How to start an oracle instance?
Explain mutating triggers.
how to code performance tuning of oracle PL/SQL? can any body send me the perfect answer?
What is a schema in oracle?
What do you mean by cdb and pdb in oracle 12c?
How do I learn what codesets are available in oracle?
What is instant client oracle?
What does sharding mean?
How to use attributes of the implicit cursor in oracle?
Differentiate between translate and replace?
How to count groups returned with the group by clause in oracle?
What happens to the data files if a tablespace is dropped?
How to export your own schema?