Basically Table A contains a list of insurance policies while Table B contains a list of accidents. Some 10 or so fields are the same in Table A as in Table B. Those fields are used to find matching records and then those records are joined and placed in Table C. The problem is that Table B may have multiple accidents listed for the same policy number. I need Table C to have only one record per policy number. I was just talking to someone else who said if I used distinct in front of the field for the policy number instead of for the Select statement itself that is should work. Does that sound right to you guys? If not do you have another solution?