I have the following dataset:
FLD_NB|RGN_CD
1 |NC
2 |SC
1 |MA
3 |GA
3 |MA
I am trying to identify all records which are available in more than 1 RGN_CD, so e.g. the scenario above, FLD_NB=1 is available in both RGN_CD='NC' and RGN_CD='MA'
What might be the best way to identify the rows which has multiple instances of FLD_NB across RGN_CD?
FLD_NB=3, which should also be one of such candidate right ?