如何在SQL語句select中根据某个字段值,修改另外一个字段的值

2024-12-30 14:22:14
推荐回答(2个)
回答1:

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
。。。。

回答2:

update table set col = (select col1 from table1 where tid = table.id)
以上table1的tid与table的id是对应的,根据这个关联,修改col为col1.