One way as I see is:
Copy all data of table2 in table1.
then select unique values from table1 and truncate table 2 and copy unique data into table2.
like:
SELECT DISTINCT [ID]
,[Name]
,[ColDate]
FROM [Table1]
now table2 has just unique values.
Does it make sense ??