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
Explain the use of tables option in exp command.
What is the difference between a primary key & a unique key?
Explain about achiever in sql?
Explain about integrity constraint?
Explain oracle 12c new features for developers?
Where do we use decode and case statements?
Can you have more than one content canvas view attached with a window ?
How to run create database statement?
In Oracle Applications We are Using Sub Ledger Accounting. When we Transfer the Data all modules (AP,AR,CE,FA) to SLA We done Some customizations? What are They??
Is there a function to split a string in plsql?
What language does oracle use?
What do you understand by database schema and what does it hold?
How many types of segments in Oracle?
What is proxy method?
What is the relation of a user account and a schema in oracle?