2

この質問の単純さについて前もってお詫びさせてください (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

ありがとう!

4

1 に答える 1

2
SELECT
        score,
        count(*) students,
        count(finished) finished,
        count(finished) / count(*) AS something_other_than_students,   
        round((count(finished) / count(*)),2) AS rounded_value
    FROM now_calc 
    GROUP BY score
    ORDER BY score;

出力列名 'students' が繰り返されていて、混乱を招いていたことに注意してください。私が使用した AS はオプションです。

IDS に対して構文を正式に検証したので、使用可能になりました。

Black JL: sqlcmd -Ffixsep -d stores -xf xx.sql | sed 's/        //g'
+ create temp table now_calc(finished CHAR(1), score INTEGER, name CHAR(10) PRIMARY KEY);
+ insert into now_calc values(null, 23, 'a');
+ insert into now_calc values('y',  23, 'b');
+ insert into now_calc values('y',  23, 'h');
+ insert into now_calc values('y',  23, 'i');
+ insert into now_calc values('y',  23, 'j');
+ insert into now_calc values('y',  43, 'c');
+ insert into now_calc values(null, 23, 'd');
+ insert into now_calc values('y',  43, 'e');
+ insert into now_calc values(null, 23, 'f');
+ insert into now_calc values(null, 43, 'g');
+ SELECT
        score,
        count(*) students,
        count(finished) finished,
        count(finished) / count(*) AS something_other_than_students,
        round((count(finished) / count(*)),2) AS rounded_value
    FROM now_calc
    GROUP BY score
    ORDER BY score;
 23|       7|       4| 5.71428571428571E-01|      0.57
 43|       3|       2| 6.66666666666667E-01|      0.67
Black JL:

'count(finished) / count(*)' が 1 を返さない唯一の理由は、'finished' が null を受け入れるかどうかだけなので、'finished' には null を使用させますが、あまり良いテーブル設計ではありません。そして、スコア 23 の 7 つの行を配置して、多数の小数点以下の桁数を取得しました (そして、スコア 43 の 1 つの行を変更して、多数の小数点以下の桁数を持つ 2 番目の数値を生成しました)。

于 2008-10-02T19:48:40.027 に答える