gpt4 book ai didi

mysql - 知道刚刚增加的值

转载 作者:行者123 更新时间:2023-11-29 00:58:43 24 4
gpt4 key购买 nike

我们都知道如何在 MySQL 中增加列:

更新表集合 col = col + 1 where id = 15;

但是...是否可以在不执行 SELECT 查询的情况下知道新值?

谢谢

最佳答案

试图理解您的问题。取自Posted by Justin Swanhart on July 29 2004 5:32pm@Mysql UPDATE refman .也许这就是你想要达到的目标

update table set 
col = col + 1
where id = 15
and @value := col

The @value := col will always evaluate to true and will store the col value before the update in the @value variable.

然后你可以做

select @value;

关于mysql - 知道刚刚增加的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4788949/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com