Hi,
I have two tables (A &B) which have the same design (columns 1-10).
Some of the data in Table B is in Table A, but I need the data in Table A, that is not in B.
I have tried using this code, but am getting no results
Can anyone help me??Code:SELECT [Table A].* FROM [Table A], [Table B] WHERE ([Table A].[1]+[Table A].[2]+[Table A].[3]+[Table A].[4]+[Table A].[5]) <> ([Table B].[1]+[Table B].[2]+[Table B].[3]+[Table B].[4]+[Table B].[5]);
Should the tables be joined by columns 1-5?
Thanks