计算数据并消除SQL中的重复(ORACLE)

时间:2017-01-21 16:46:45

标签: sql oracle oracle11g

我在此表中有数据。

enter image description here ..... ....

所以我希望输出看起来像表格 enter image description here

那是什么SQL?

1 个答案:

答案 0 :(得分:3)

简单。 GROUP BYCOUNT

select
    customer_no,
    items,
    count(*) "COUNT"
from your_table
group by customer_no,
    items;