I have a list of ID, a column NAMESPACE
and other columns.
I would need to find IDs with same value for NAMESPACE but different values in other columns, so they are not duplicated rows.
In the example below, I would need to find rows with value Id_1
and NameSpaceA
that are repeated three times in the example, but that are not duplicates in the table as other fields have different value.
ID. NAMESPACE OTHER
---------------------------
Id_1 NameSpaceA X
Id_1 NameSpaceA Y
Id_1 NameSpaceA Z
Id_2 NameSpaceB. W
Id_3 NameSpaceC. A
Many thanks in advance