select A.`Product#`,
a. ` Email Address`
FROM
Table a A, `Table b B
where A.`Product#`<> B.`Product#`
I am trying to compare if Table B's product# exists in Table A or not, this query does not give 100 % result.
Please tell me what is wrong in this query.