I have a table with two columns: id1, id2. There are 4 scenerios regarding these fields: 1) A id1 can map to multiple id2's 2) a id2 can map to multiple id1's 3) A id1 can map to one id2 4) a id2 can map to one id2. I want to create a table that contains all id1's and id2's that only match in a 1-to-1 relationship - meaning, the id1 is only related to one id2. What would that select statement look like? Thanks in advance, experts!