Remove duplicates in SQL Result set of ONE table
问题 Afternoon/Evening all, I'm looking for the final touches to the below query. I need to remove the duplicate occurrences of a column in a particular row. Currently using the below SQL: SELECT CBNEW.* FROM CallbackNewID CBNEW INNER JOIN (SELECT IDNEW, MAX(CallbackDate) AS MaxDate FROM CallbackNewID GROUP BY IDNEW) AS groupedCBNEW ON (CBNEW.CallbackDate = groupedCBNEW.MaxDate) AND (CBNEW.IDNEW = groupedCBNEW.IDNEW); My result set looks like the below ID RecID Comp Rem Date_ IDNEW IDOLD CB?