搜尋

首頁  >  問答  >  主體

如何在 clickhouse 資料庫中使用這種情況條件以 % 顯示輸出

如何在 clickhouse 資料庫中使用這種情況條件以 % 形式顯示輸出。

ROUND(count(distinct case when bt.status = 'approved' then bt.id else null end)/count(distinct p.id) * 100) as "SR- txns"

P粉237125700P粉237125700497 天前740

全部回覆(1)我來回復

  • P粉754473468

    P粉7544734682023-09-15 10:06:02

    但它按原樣工作? ? ?

    create table test(id int, id2 int, status String) Engine=Memory
    as select number,number, ['approved', 'completed'][number%3] from numbers(10);
    
    select ROUND(count(distinct case when status = 'approved' then id else null end)/count(distinct id2) * 100) as "SR- txns"
    from test
    ┌─SR- txns─┐
    │       30 │
    └──────────┘

    Clickhouse 風格的語法:

    select ROUND(uniqExactIf(id,status = 'approved')/uniqExact(id2) * 100) as "SR- txns"
    from test
    ┌─SR- txns─┐
    │       30 │
    └──────────┘
    

    回覆
    0
  • 取消回覆