Invantive SQL是否支持单个case语句中的多个条件?我在下面的陈述中,我没有得到任何结果。仅使用1个条件(无级联)尝试相同的语句,这检索了预期的结果。
select prj.code
, prj.startdate
, prj.enddate
from exactonlinerest..projects prj
where prj.code between $P{P_PROJECT_FROM} and $P{P_PROJECT_TO}
and case
/* when (prj.enddate is null or prj.enddate >= sysdate)
then 'Y'
when (prj.enddate is not null and prj.enddate <= sysdate)
then 'N' */
when prj.startdate <= sysdate
then 'B'
end
= $P{P_PROJECT_ACTIVE_FROM}
答案 0 :(得分:0)
我认为你的where子句没有正确制定。使用Exact Online,项目要么具有:
case
的第一部分处理选项1和选项3.第二部分处理选项2.所以在这种情况下永远不会有'B'
的结果。
要分析此类问题,我建议在select子句中包含case
并删除过滤器。这可以让您了解可能的结果。
示例:
use 868056,102673
select prj.division
, prj.code
, prj.startdate
, prj.enddate
, case
when prj.enddate is null or prj.enddate >= sysdate
then 'Y'
when prj.enddate is not null and prj.enddate <= sysdate
then 'N'
when prj.startdate <= sysdate
then 'B'
end
indicator
from exactonlinerest..projects prj
where prj.code between $P{P_PROJECT_FROM} and $P{P_PROJECT_TO}