Hi,
I have a table like this one.
Sl No Status
1 M
1 M
2 M
3 N
4 M
4 N
5 M
5 N
I want to fetch those duplicate sl no whose status is M and N.
Means from the above I table i want follwing result
SlNo Status
4 M
4 N
5 M
5 N
Plz help me.