I have a dataset with two columns as follows;
Prod Value
A 1
A 2
A 3
B 2
B 4
C 1
C 2
So I want all the rows where value is common for Prod, so in the example above only the following would be returned.
A 2
B 2
C 2
Either LINQ or sql would be helpful
Thanks