update table set col2=case when col1 条件1 then 值1 when col1 条件2 then 值2;
或者分为几句修改
update table set col2=值1 where col1 条件1
update table set col2=值2 where col1 条件2
。。。。
update table set col = (select col1 from table1 where tid = table.id)
以上table1的tid与table的id是对应的,根据这个关联,修改col为col1.