kev510
Programmer
- Jul 12, 2006
- 61
Hello everyone,
sorry about the confusing title.
Here's the problem I'm running into. Table1 has fields X and Y, and table2 also has fields X and Y.
I would like to display all of Table1's data where Table1's X, Y values do not match to Table2's X and Y data. Here's an example -
Table1 Table2
X Y X Y
------- -------
1 2 1 2
3 4 3 4
5 6 9 8
in this case, I would like to be only be returned with the result
Table1
X Y
-------
5 6
Please let me know how this can be done. Thank you!
-Kevin
sorry about the confusing title.
Here's the problem I'm running into. Table1 has fields X and Y, and table2 also has fields X and Y.
I would like to display all of Table1's data where Table1's X, Y values do not match to Table2's X and Y data. Here's an example -
Table1 Table2
X Y X Y
------- -------
1 2 1 2
3 4 3 4
5 6 9 8
in this case, I would like to be only be returned with the result
Table1
X Y
-------
5 6
Please let me know how this can be done. Thank you!
-Kevin