gpt4 book ai didi

sql-server - 为什么 Postgres 的 exp/log 结果与 SQL Server 不同?

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

我的盒子上没有 SQL Server,但为什么下面的 answer 没有?在 Postgres 上返回 360?

select exp(sum(log(val)))
from (values(4),(5),(3),(6)) as tbl(val)

返回 12.888075

最佳答案

您必须使用自然对数(ln 函数),而不是以 10 为底的对数(log 函数):

select exp(sum(ln(val)))
from (values(4),(5),(3),(6)) as tbl(val)

exp
-----
360
(1 row)

但这不是乘以行的好方法 - 由于四舍五入,它速度慢且容易出错。您应该声明一个聚合:

create function multiply(int,int) returns int as $$
select $1*$2;
$$ language sql immutable strict;

create aggregate multiply(int) (
sfunc=multiply,
stype=int,
initcond=1
);

select multiply(val)
from (values(4),(5),(3),(6)) as tbl(val)
multiply
----------
360
(1 row)

关于sql-server - 为什么 Postgres 的 exp/log 结果与 SQL Server 不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1490875/

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