标签: sql oracle oracle11g
我在此表中有数据。
..... ....
所以我希望输出看起来像表格
那是什么SQL?
答案 0 :(得分:3)
简单。 GROUP BY和COUNT。
GROUP BY
COUNT
select customer_no, items, count(*) "COUNT" from your_table group by customer_no, items;