主页 M

根据select出来的数据进行update

2020-02-14 网页编程网 网页编程网

问题

select * from table where id = 1

update table set reading =1 where id = 1

将以上2步改成独立一句sql。

答案:

update table set reading = (select reading from table t where t.id = 1)

阅读原文
阅读 7597
123 显示电脑版