gpt4 book ai didi

postgresql - 在 PostgreSQL 的 WHERE 子句中使用函数结果

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

我试图在 where 子句中使用函数执行的结果但没有成功:

SELECT clinics.*, distance_between_objects(1, id, 7, 3) AS dist FROM clinics WHERE dist<=1;

给我:“dist”列不存在。像这样引用它:

SELECT clinics.*, distance_between_objects(1, id, 7, 3) AS dist FROM clinics WHERE "dist"<=1;

也没有用。请告知 Postgres 是否有可能在 WHERE 子句中使用函数结果而不调用它两次?谢谢!

最佳答案

为了避免调用 distance_between_objects 两次:

--Subquery
SELECT * FROM (
SELECT
*,
distance_between_objects(1, id, 7, 3) AS dist
FROM
clinics) AS clinics_dist
WHERE
dist <= 1;

--CTE
WITH clinics_dist AS (
SELECT
*,
distance_between_objects(1, id, 7, 3) AS dist
FROM
clinics
)
SELECT
*
FROM
clinics_dist
WHERE
dist <= 1;

CTE 在我看来是一种更简洁的方法。

关于postgresql - 在 PostgreSQL 的 WHERE 子句中使用函数结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47455962/

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