Answer Posted / kirankumar.vangeti
For the same example given in the answer 1
select studentname, subject, count(studentname) as count
from student
group by studentname, subject
having (count(studentname)>1);
above query will give the results like
STUD1 A 2
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Define select, insert, create, delete, update, drop keywords
How to change sql*plus system settings?
How do I trace sql profiler?
Does sqlite need a server?
What is a record in a database?
Define tables and fields in a database
Which tcp/ip port does sql server run on? How can it be changed? : Sql dba
How do I enable sql encryption?
what is a foreign key ? : Sql dba
How to install oracle sql developer?
Is it possible for a table to have more than one foreign key?
What is a full join?
Does pl sql work in mysql?
What is the unique index?
What is difference between stored function and application function?