Here's my problem.<br>I've got 2 tables with a lot of the same fields. I am using a SQL query to compare those shared fields and join the matching records into a results table. <br><br>What I've had happening is that there is only 1 record in Table A, but 3 records in Table B whose shared fields match the fields in Table A's 1 record, but have slight differences in other fields which can't be used for comparison. Therefor, the 1 record in Table A is being combined with each of the records in Table B and results in a 3 record Table C (results table). Basically a Cartesian product. <br><br>What I want to happen is for only the first record in Table B that matches the record in Table A to be joined and copied to Table C, but I can't seem to find a command that would do that. <br><br>Does anyone have any ideas? <br><br>Thanks,<br>Eve