I have around 88k records in another table like ac. I want to update one column of the table ac into main table like tbl. Eg- Table tbl sample records like
col1 col2 col3 col4
abc dhj 123 ab12
def bhv 456 ds34
ghi hwj 789 hj46
jkl yuh 012 ke28
In table ac sample records like
col1 col3`
cba 123
fed 456
ihg 789
lkj 012
How to update the tbl value from ac table. So that the record look like
col1 col2 col3 col4
cba dhj 123 ab12
fed bhv 456 ds34
ihg hwj 789 hj46
lkj yuh 012 ke28