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 / venkat
SELECT COUNT(NAME_FIELD_NAME)AS NOMBER_OF_OCCURENCE FROM
STUDENT WHERE NUMBER_OF_OCCURANCE >1;
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
What is the difference between "as" and "is" in an oracle stored procedure?
How to join two tables in a single query using oracle?
Whether any commands are used for months calculation? If so, what are they?
What is an external table?
How to concatenate two text values in oracle?
Explain integrity constraint?
Explain what are the uses of rollback segment?
How do I know if oracle client is installed on windows?
What is the difference between alert log file and tarce file ?
How to experiment a data lock in oracle?
Can we create database in oracle using command line ?
How to convert characters to dates in oracle?
what is difference between sql plus and sql*plus? (not sql and sql plus).
how to join query for one source type is oracle another source type is sql server ?
Please explain compound trigger in oracle?