gpt4 book ai didi

sql - 如何在 where 条件下使用计算列?

转载 作者:行者123 更新时间:2023-12-04 22:25:43 25 4
gpt4 key购买 nike

如何在 Oracle 9i 中的 where 条件中使用计算列?

我想使用类似的东西

select decode (:pValue,1,
select sysdate from dual,
select activation_date from account where AcNo = 1234) as calDate
where caldate between startDate and endDate;

最佳答案

您可以使用内嵌 View :

select calcdate from
(
select startDate, endDate,
decode (:pValue,1,
select sysdate from dual,
select activation_date from account where AcNo = 1234) as calcdate
)
where calcdate between startDate and endDate;

关于sql - 如何在 where 条件下使用计算列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2416522/

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