update和select在mysql中使用单查询

t9aqgxwy  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(315)

我想在mysql中使用单个查询更新列并选择值
例如

update table set address='bangalore',updated_count =updated_count+1 where id=1 
select * from table where id=1
b1zrtrql

b1zrtrql1#

这是不可能的。正如@d-shih提到的,不能在同一个查询中同时执行update和select。sql update 约定不允许返回数据和 select 语句无法写入表。
每个人都有自己的目的,不能写在一句话里。它们必须分开执行。

相关问题