I have two tables that I am querying. I want to include all records from table A and only those records from table B where the joined fields ARE NOT equal
Here is sort of what I'm trying, but it's not working.
SELECT [table A].DLN, [table B].DUP
FROM [table A] LEFT JOIN [table B] ON ([table A].DUP <> [table B].DUP) AND ([table A].DLN <> [table B].DLN);3
This is putting me no where close.
Thanks in advance,
Kacy
________
Fix ps3
Here is sort of what I'm trying, but it's not working.
SELECT [table A].DLN, [table B].DUP
FROM [table A] LEFT JOIN [table B] ON ([table A].DUP <> [table B].DUP) AND ([table A].DLN <> [table B].DLN);3
This is putting me no where close.
Thanks in advance,
Kacy
________
Fix ps3
Last edited: