I have searched for Find duplicate entries in a column and Oracle: find duplicate rows in select query, but couldn't seem to get any answer...
I have some data that looks like this
columnA columnB columnC
1111111 emailID1 true
1111111 emailID2 false
1111222 emailID3 true
1111339 emailID4 true
2384398 emailID5 true
I would like to only display these column that has the same values in columnA but can be different in columnB and/or C:
columnA columnB columnC
1111111 emailID1 true
1111111 emailID2 false
Using the having >1 doesn't really seem to capture this, any ideas? Thanks.