C
Christian Bahnsen
Essentially, I’m trying to do the opposite of an inner join, to exclude the
values from table A that have matching values in table B, returning all the
other records from Table A, rather than return the records that exist in both
tables.
Using the text below as an example, an inner join of Table A to Table B on a
key field would return 2 and 5. What I’m trying to do is return all the
values from Table A except 2 and 5.
Table A Table B
1 76
2 2
3 44
4 6
5 5
… …
I tried replacing the = of an inner join with <> or !=, but Access doesn’t
seem to like that, telling me it can’t represent <> and rejecting != out of
hand.
Thanks in advance for any help.
values from table A that have matching values in table B, returning all the
other records from Table A, rather than return the records that exist in both
tables.
Using the text below as an example, an inner join of Table A to Table B on a
key field would return 2 and 5. What I’m trying to do is return all the
values from Table A except 2 and 5.
Table A Table B
1 76
2 2
3 44
4 6
5 5
… …
I tried replacing the = of an inner join with <> or !=, but Access doesn’t
seem to like that, telling me it can’t represent <> and rejecting != out of
hand.
Thanks in advance for any help.