I am having some trouble constructing a query, and I'm starting to not think straight about everything at this point.
Here is an example table with values:
Table
----------
A B
----------
1 1
1 2
2 2
2 3
3 1
3 4
Here is what I am trying to accomplish.
I am trying to end up with a unique value for A (can be multiple at first).
Example: User selects value 1 (for column B) this results in either a 1 or a 3 for column A. This isn't good enough for the User then need to select another value for column B (2 or 4), the combination of which gets them a unique value for A.
I can already tell this wasn't phrased good - if you can interpret it great, if not I can try to explain better when I'm thinking isn't as fuzzy.
Here is an example table with values:
Table
----------
A B
----------
1 1
1 2
2 2
2 3
3 1
3 4
Here is what I am trying to accomplish.
I am trying to end up with a unique value for A (can be multiple at first).
Example: User selects value 1 (for column B) this results in either a 1 or a 3 for column A. This isn't good enough for the User then need to select another value for column B (2 or 4), the combination of which gets them a unique value for A.
I can already tell this wasn't phrased good - if you can interpret it great, if not I can try to explain better when I'm thinking isn't as fuzzy.