繁体   English   中英

SQL 如何查询合计和小计

[英]SQL How to Query Total & Subtotal

我有一个如下所示的表,其中存储了 day、order_id 和 order_type。

select day, order_id, order_type
from sample_table
order_id 订单类型
2021-03-01 1 离线
2021-03-01 2 离线
2021-03-01 3 在线的
2021-03-01 4 在线的
2021-03-01 5 离线
2021-03-01 6 离线
2021-03-02 7 在线的
2021-03-02 8 在线的
2021-03-02 9 离线
2021-03-02 10 离线
2021-03-03 11 离线
2021-03-03 12 离线

下面是所需的 output:

总订单 num_offline_order num_online_order
2021-03-01 6 4 2
2021-03-02 4 2 2
2021-03-03 2 2 0

有谁知道如何查询以获得所需的 output?

您需要 pivot 的数据。 在 Vertica 中实现条件聚合的一种简单方法是使用::

select day, count(*) as total_order,
       sum( (order_type = 'online')::int ) as num_online,
       sum( (order_type = 'offline')::int ) as num_offline
from t
group by day;

casesum

select day, 
    count(1) as total_order
    sum(case when order_type='offline' then 1 end) as num_offline_order,
    sum(case when order_type='online' then 1 end) as num_online_order
from sample_table
group by day
order by day

您还可以使用count来聚合不是 null 的值

select 
    day, 
    count(*) as total_order, 
    count(case when order_type='offline' then 1 else null end) as offline_orders,
    count(case when order_type='online' then 1 else null end) as online_orders 
from sample_table 
group by day 
order by day;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM