我想在mysql中使用单个查询更新列并选择值例如
update table set address='bangalore',updated_count =updated_count+1 where id=1 select * from table where id=1
b1zrtrql1#
这是不可能的。正如@d-shih提到的,不能在同一个查询中同时执行update和select。sql update 约定不允许返回数据和 select 语句无法写入表。每个人都有自己的目的,不能写在一句话里。它们必须分开执行。
update
select
1条答案
按热度按时间b1zrtrql1#
这是不可能的。正如@d-shih提到的,不能在同一个查询中同时执行update和select。sql
update
约定不允许返回数据和select
语句无法写入表。每个人都有自己的目的,不能写在一句话里。它们必须分开执行。