Hi,<br><br>I have a table where there are many records for one transaction.If I only want one record of the transaction how can I delete all but one record? I am trying to use an SQL solution like this:<br><br>WHERE (((Transactions.TransID) In (select transid from Transactions as tmp group by transid having count (*)>1)));<br><br>But how can I get this query to leave just one transaction behind?<br><br>Thanks.