gpt4 book ai didi

sql - postgres 中用于计算值的列别名

转载 作者:行者123 更新时间:2023-11-29 11:33:06 25 4
gpt4 key购买 nike

我试图在 postgres 中为这个查询使用别名,但 postgres 停止并提示错误:列“小计”不存在

SELECT SUM(price) AS subtotal, 
subtotal * 3.0 AS fees,
(subtotal + fees) AS total
FROM cart

您不能在下一栏中使用别名吗?

最佳答案

不,您不能在同一 SQL 语句中重复使用列别名 - 使用:

SELECT SUM(t.price) AS subtotal,
SUM(t.price) * 3.0 AS fees,
SUM(t.price + fees) AS total
FROM CART t

可以在ORDER BY子句中引用列别名,部分数据库也支持在GROUP BYHAVING子句中引用。

关于sql - postgres 中用于计算值的列别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2870391/

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