我试图获取从子查询返回的结果总数。这是我的问题:
select
count(r.reason_id) as num,
cast (count(r.reason_id) as float) / (select count(*) as total from r) * 100.0 as pct
from (
select
case
when rarreason != 0 then rarreason
else rejectreason end as reason_id
from
workorderlines
where
(rarreason != 0 or rejectreason != 0)
) as r
group by
r.reason_id
然而,当我尝试执行此操作时,我收到此错误:
ERROR: relation "r" does not exist
LINE 3: ...on_id) as float) / (select count(*) as total from r) * 100.0...
^
********** Error **********
ERROR: relation "r" does not exist
SQL state: 42P01
Character: 112
我该怎么做?我正在使用Postgresql 9.1。谢谢!
答案 0 :(得分:1)
尝试:
select
count(r.reason_id) as num,
cast (count(r.reason_id) as float) / max(r.count_all) * 100.0 as pct
from (
select
case
when rarreason != 0 then rarreason
else rejectreason end as reason_id,
count(*) over () as count_all
from
workorderlines
where
(rarreason != 0 or rejectreason != 0)
) as r
group by
r.reason_id
答案 1 :(得分:1)
没有检查你的逻辑,但你可以像这样重新安排它:
with r as (
select
case
when rarreason != 0 then rarreason
else rejectreason end as reason_id
from
workorderlines
where
(rarreason != 0 or rejectreason != 0)
)
select
count(r.reason_id) as num,
cast (count(r.reason_id) as float) / (select count(*) as total from r) * 100.0 as pct
from r
group by r.reason_id