gpt4 book ai didi

sql - PostgreSQL AVG函数中的关键字ALL

转载 作者:行者123 更新时间:2023-11-29 12:58:59 28 4
gpt4 key购买 nike

假设我有一个员工表,其中包含他们的薪水。有什么区别:

SELECT AVG(salary)   
FROM employee;

SELECT AVG(ALL salary)    
FROM employee;

ALL 是做什么的?两种情况都给出相同的结果。

最佳答案

根据documentation无论聚合函数如何,它们都完全相同:

The first form of aggregate expression invokes the aggregate once for each input row. The second form is the same as the first, since ALL is the default.

关于sql - PostgreSQL AVG函数中的关键字ALL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35332576/

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