0

我有一个下表,需要使用普通 sql 获取输出,如下所示 2。如果对于 的任何相同值columnC确实有“Y” ,则成功计数应为 +1,否则应将其添加到失败计数列输出。我们可以编写一个 SQL(在 Oracle 中)来获得如下所述的输出吗?暂时可以忽略。ColumnAColumnD

1. 表

ColumnA   ColumnB    ColumnC    ColumnD     File_type
--------  ---------  --------   ----------  ------------
11111     A          N          NULL        typeA
11111     B          N          NULL        typeA
11111     C          Y          SPILL       null
11111     D          N          NULL        typeA
22222     A          N          SPILL       typeA
22222     B          Y          SPILL       typeA
22222     C          N          NULL        null
22222     D          N          NULL        typeA
33333     A          N          NULL        typeA
33333     B          N          NULL        null
33333     C          N          NULL        typeA
33333     D          N          NULL        typeA
111110    A          N          NULL        typeB
111110    B          N          NULL        typeB
111110    C          Y          SPILL       null
111110    D          N          NULL        typeB
222220    A          N          SPILL       typeB
222220    B          Y          SPILL       typeB
222220    C          N          NULL        null
222220    D          N          NULL        typeB
333330    A          N          NULL        typeB
333330    B          N          NULL        null
333330    C          Y          SPILL       typeB
333330    D          N          NULL        typeB

2. 所需输出

File_type        ColumnD  Success_cnt    Fail_cnt
----------       -------- -----------    -----------
typeA             SPILL         2          1
typeB             SPILL         3      
4

4 回答 4

0

这是我试图理解你的任务:

SELECT r.File_type, SUM(CASE WHEN r.cnt > 0 THEN 1 ELSE 0 END) success, 
                    SUM(CASE WHEN r.cnt = 0 THEN 1 ELSE 0 END) fail
FROM
(SELECT t.File_type,  SUM(CASE WHEN t.ColumnC = 'Y' THEN 1 ELSE 0 END) cnt
FROM Table1 t
WHERE t.File_type IS NOT NULL
GROUP BY t.file_type, t.ColumnA) r
GROUP BY r.File_type;

我根本没有使用ColumnBColumnC

这是此任务的SQL Fiddle。我使用了简化的数据样本。您可能想尝试使用不同的数据。

于 2013-03-09T01:29:03.873 回答
0

尝试这个

with CTE as
(
    select A.columnA, columnc,
    row_number() over (partition by columnA order by columnc desc) rnk
    from T  A  
), cte2 as
(
    SELECT distinct columna, file_type from t where file_type is not null
), cte3 as
(
     select distinct columnd, file_type from t 
     where file_type is not null and columnd is not null
)
select a.file_type, a.columnd, 
count(case when columnc = 'Y' then 1 end) Success_cnt,
count(case when columnc = 'N' then 1 end) fail_cnt
from cte3 a 
inner join cte2 b on a.file_type = b.file_type
inner join
(select * from cte where rnk = 1) c on b.columnA = c.columnA
group by a.file_type, a.columnd

SQL 演示

于 2013-03-08T23:04:48.373 回答
0

一种方法是使用光标。您可以遍历记录并根据需要增加变量。你已经试过了吗?

于 2013-03-09T04:55:42.273 回答
0

您可以忽略 columnA 输出,或者在外部选择中将其作为派生表运行...

SELECT
   ColumnA,
   File_type,
   CountIf(Max(ColumnC),'Y') as "Success_cnt",
   CountIf(Max(ColumnC),'N') as "Fail_cnt"
FROM
   table
Group By
   ColumnA,
   File_type
于 2013-03-08T23:10:01.063 回答