7

我是甲骨文的新手。我有一个包含三列的 Oracle 表serialnoitem_categoryitem_status. 在第三列中,行的值为serviceableunder_repaircondemned

我想使用 count 运行查询,以显示有多少可用,有多少正在维修,每个项目类别有多少被谴责。

我想运行类似的东西:

select item_category
  , count(......) "total"
  , count (.....) "serviceable"
  , count(.....)"under_repair"
  , count(....) "condemned"
from my_table
group by item_category ......

我无法在计数中运行内部查询。

这是我希望结果集的样子:

item_category    total    serviceable      under repair      condemned
=============    =====    ============     ============      ===========
chair              18        10               5                3
table              12        6                3                3 
4

3 回答 3

20

您可以在 COUNT 函数中使用 CASE 或 DECODE 语句。

  SELECT item_category,
         COUNT (*) total,
         COUNT (DECODE (item_status, 'serviceable', 1)) AS serviceable,
         COUNT (DECODE (item_status, 'under_repair', 1)) AS under_repair,
         COUNT (DECODE (item_status, 'condemned', 1)) AS condemned
    FROM mytable
GROUP BY item_category;

输出:

ITEM_CATEGORY   TOTAL   SERVICEABLE UNDER_REPAIR    CONDEMNED
----------------------------------------------------------------
chair           5       1           2               2
table           5       3           1               1
于 2013-08-18T12:11:55.887 回答
8

这是一个非常基本的“分组依据”查询。如果您搜索它,您会发现大量 关于如何使用它 文档。

对于您的具体情况,您需要:

select item_category, item_status, count(*)
  from <your table>
 group by item_category, item_status;

你会得到这样的东西:

item_category   item_status   count(*)
======================================
Chair           under_repair  7
Chair           condemned     16
Table           under_repair  3

根据您的目的更改列顺序

于 2013-08-18T08:56:38.330 回答
2

我有写这些东西的倾向,所以当我忘记如何做时,我有一个容易找到的例子。

PIVOT 子句在 11g 中是新的。因为那是 5 年前的事了,我希望你正在使用它。

样本数据

create table t
(
  serialno number(2,0),
  item_category varchar2(30),
  item_status varchar2(20)
);

insert into t ( serialno, item_category, item_status )
select 
  rownum serialno,
  ( case 
      when rownum <= 12 then 'table'
      else 'chair'
    end ) item_category,
  ( case
      --table status
      when rownum <= 12 
        and rownum <= 6 
      then 'servicable'
      when rownum <= 12
        and rownum between 7 and 9 
      then 'under_repair'
      when rownum <= 12
        and rownum > 9 
      then 'condemned'
      --chair status
      when rownum > 12
        and rownum < 13 + 10 
      then 'servicable'
      when rownum > 12
        and rownum between 23 and 27
      then 'under_repair'
      when rownum > 12
        and rownum > 27
      then 'condemned'
    end ) item_status
from 
  dual connect by level <= 30;
commit;

和 PIVOT 查询:

select *
from
  (
    select
      item_status stat,
      item_category,
      item_status
    from t
  )
pivot
(
  count( item_status )
  for stat in ( 'servicable' as "servicable", 'under_repair' as "under_repair", 'condemned' as "condemned" )
);

ITEM_CATEGORY servicable under_repair  condemned
------------- ---------- ------------ ----------
chair                 10            5          3 
table                  6            3          3 

不过,我仍然更喜欢@Ramblin' Man 的做法(除了使用 CASE 代替 DECODE)。

编辑

刚刚意识到我遗漏了 TOTAL 列。我不确定有没有办法使用 PIVOT 子句获取该列,也许其他人知道如何。也可能是我不经常使用它的原因。

于 2013-08-19T13:06:56.137 回答