I have the following SQL table:
A|B
---
w|x
x|w
y|z
z|y
Can I construct a query which will yield the following result:
A|B
---
w|x
y|z
To summarize, I would like to treat the two columns as an unordered set, such that (a,b) == (b,a).
|
feedback
|
|
The "best" code depends on the database, but following is dbms-agnostic:
| |||||||||
feedback
|
|
You could try the following:
With the following test-table
it returns:
Using | |||||||
feedback
|