この質問の単純さについて前もってお詫びさせてください (Jeff のポッドキャストと、質問の質が「低くなる」という彼の懸念を聞きました) が、私は立ち往生しています。AquaData を使用して Informix DB にアクセスしています。MS SQL と Informix SQL の間にはちょっと風変わりなニュアンスがあります。とにかく、単純なネストされた式を実行しようとしていますが、それは私を嫌っています。
select
score,
count(*) students,
count(finished) finished,
count(finished) / count(*)students
-- round((count(finished) / count(*)students),2)
from now_calc
group by score
order by score
単純な除算式を含む行は、終了した人のパーセンテージを返します。これはまさに私が望むものです...結果を 2 桁に四捨五入するだけです。コメント行 (--) は機能しません。考えられるすべてのバリエーションを試しました。
*5行目と6行目を同時に使用しようとしているわけではありません
申し訳ありませんが、now_calc は一時テーブルであり、フィールド名は実際には "students" と "finished" であることに言及する必要がありました。これらの結果を直接 Excel に出力し、フィールド名を列見出しとしても使用したかったので、そのような名前を付けました。だから、私はあなたが言っていることを理解しています。それに基づいて、次のように (*) を削除して機能させました。
select
score,
count(students) students,
count(finished) finished,
round((count(finished) / count(students) * 100),2) perc
from now_calc
group by score
order by score
クエリ全体を含めています。これを見ている他の人にとっては、より意味があるかもしれません。学習の観点から、'finished' フィールドでカウントが機能する唯一の理由は、Case ステートメントの評価に応じて値を 1 または null にする Case ステートメントのためであることに注意することが重要です。そのケース ステートメントが存在しない場合、'finished' をカウントすると、'students' をカウントするのとまったく同じ結果になります。
--count of cohort members and total count of all students (for reference)
select
cohort_yr,
count (*) id,
(select count (*) id from prog_enr_rec where cohort_yr is not null and prog = 'UNDG' and cohort_yr >=1998) grand
from prog_enr_rec
where cohort_yr is not null
and prog = 'UNDG'
and cohort_yr >=1998
group by cohort_yr
order by cohort_yr;
--cohort members from all years for population
select
id,
cohort_yr,
cl,
enr_date,
prog
from prog_enr_rec
where cohort_yr is not null
and prog = 'UNDG'
and cohort_yr >=1998
order by cohort_yr
into temp pop with no log;
--which in population are still attending (726)
select
pop.id,
'Y' fin
from pop, stu_acad_rec
where pop.id = stu_acad_rec.id
and pop.prog = stu_acad_rec.prog
and sess = 'FA'
and yr = 2008
and reg_hrs > 0
and stu_acad_rec.cl[1,1] <> 'P'
into temp att with no log;
--which in population graduated with either A or B deg (702)
select
pop.id,
'Y' fin
from pop, ed_rec
where pop.id = ed_rec.id
and pop.prog = ed_rec.prog
and ed_rec.sch_id = 10
and (ed_rec.deg_earn[1,1] = 'B'
or (ed_rec.deg_earn[1,1] = 'A'
and pop.id not in (select pop.id
from pop, ed_rec
where pop.id = ed_rec.id
and pop.prog = ed_rec.prog
and ed_rec.deg_earn[1,1] = 'B'
and ed_rec.sch_id = 10)))
into temp grad with no log;
--combine all those that either graduated or are still attending
select * from att
union
select * from grad
into temp all_fin with no log;
--ACT scores for all students in population who have a score (inner join to eliminate null values)
--score > 50 eliminates people who have data entry errors - SAT scores in ACT field
--2270
select
pop.id,
max (exam_rec.score5) score
from pop, exam_rec
where pop.id = exam_rec.id
and ctgry = 'ACT'
and score5 > 0
and score5 < 50
group by pop.id
into temp pop_score with no log;
select
pop.id students,
Case when all_fin.fin = 'Y' then 1 else null end finished,
pop_score.score
from pop, pop_score, outer all_fin
where pop.id = all_fin.id
and pop.id = pop_score.id
into temp now_calc with no log;
select
score,
count(students) students,
count(finished) finished,
round((count(finished) / count(students) * 100),2) perc
from now_calc
group by score
order by score
ありがとう!