i don't get it of how to write a simple sql statement that shows only those entries that appers more than once.
e.x.
NodeID Number
0 12
1 12
2 12
0 13
1 13
0 14
1 15
2 16
1 17
Select nodeID
, number
from Table where number appearing more than once with different nodeID
Result:
NodeID Number
0 12
1 12
2 12
0 13
1 13