views:

36

answers:

3
+------------+------------+
| student    | department |
+------------+------------+
| 1234567890 | CS         | 
| 1234567890 | ME         | 
| 1234567890 | CS         | 
| 000000001  | ME         | 
+------------+------------+

How can I get rows that are repeating with respect to both fields?
Thanks in advance.

+2  A: 
SELECT student, department, count(*) as 'count' 
FROM students
GROUP BY student, department
HAVING count > 1
+------------+------------+-------+
| student    | department | count |
+------------+------------+-------+
| 1234567890 | CS         | 2     |
+------------+------------+-------+
Jonathan Sampson
+3  A: 

It should be something like

SELECT  student,
    department      
FROM    Table
GROUP BY student, department
HAVING COUNT(*) > 1
astander
+1  A: 
SELECT * 
FROM mytable
GROUP BY student, department
HAVING COUNT( * ) > 1;
Anax