gpt4 book ai didi

mysql - 像这样在 sum() 中使用 sql 变量 --sum(@wokao) 导致不可预测的结果

转载 作者:太空宇宙 更新时间:2023-11-03 11:57:49 25 4
gpt4 key购买 nike

查询 1)

Select * From test;

-----------
|no1|no2|
----+------
|1 | 1 |
|2 | 2 |
|3 | 3 |
|4 | 4 |
|5 | 5 |
----+------

查询 2)

select @wokao:= (no1 + no2), @wokao from test group by no1;

2 2
4 4
6 6
8 8
10 10

查询 3)

select @wokao:= (no1 + no2), sum(@wokao) from test group by no1;

2 null
4 2
6 4
8 6
10 8

最后一个 SQL 查询的结果令人困惑。为什么不输出类似第二个查询的结果?

我问这个问题是因为我在 google 和 stackoverflow 中搜索了关键字“sum() sql variable”,但一无所获。当我在工作中编写 SQL 查询以使用 SUM() 中的 SQL 变量和大量子查询查询交易信息时,我遇到了这个问题。

非常感谢有人能解释这个问题。

最佳答案

根据 MYSQL Documentation

As a general rule, other than in SET statements, you should never assign a value to a user variable and read the value within the same statement.For other statements, such as SELECT, you might get the results you expect, but this is not guaranteed.

在下面的语句中,您可能会认为 MySQL 会先计算 @a,然后再进行赋值:

SELECT @a, @a:=@a+1, ...;

但是,涉及用户变量的表达式的求值顺序是未定义的

所以在你的第二个查询中,@wokao首先计算@wokao:= (no1 + no2),然后显示结果在第三个查询中,首先显示sum(@wokao)的值,然后计算,因为一开始@wokao的值是null,所以先显示null,然后再添加后续对它的值(value)。

关于mysql - 像这样在 sum() 中使用 sql 变量 --sum(@wokao) 导致不可预测的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31352674/

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