I have added to my existing table1 new column (col7). Structure is as below on picture. Here is the SQL statement which produces the table:
select year, month, quater, col4, col5, col6, col7 from table1
Based on table2, I want to update values into col7 in table1 (insert all values from table2 to table1).
My unique key is: year-month-quater-col4-col5-col6
I didn't do before this update. Can you kindly please help how to do it? Thank you!