There are two table, also two column are the same between them
table1:
id, date
table2:
id, date
The problem is , how to update the id of table 2 that can match the date in 2 table , that means, e.g.
update table2 set table2.id = table1.id Where table1.date = table2.date
thanks