Answer the question
In order to leave comments, you need to log in
mysql. Query to select non-intersecting values of two columns?
There are data of two columns
cid fid
+-----+-----+
| 24 | 12 |
+-----+-----+
| 24 | 19 |
+-----+-----+
| 25 | 19 |
+-----+-----+
| 24 | 12 |
+-----+-----+
| 25 | 12 |
+-----+-----+
You need to get the following result
+-----+-----+
| 24 | 12 |
+-----+-----+
| 24 | 19 |
+-----+-----+
| 25 | 19 |
+-----+-----+
| 25 | 12 |
+-----+-----+
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question