时间:2021-07-01 10:21:17 帮助过:39人阅读
update table set col = col + 1 where id = 22 and @value := col;
如题,例如sql:update table set col = col + 1 where id = 22 and @value := col;
php该如何得到value的值呢?
是否应该是 and col=@value ?确定一条记录后,更新对应的值
你可以执行一条sql的返回结果就能获取到变量的值
select @value;