-- SQLBench-H query 13 derived from TPC-H query 13 under the terms of the TPC Fair Use Policy. | |
-- TPC-H queries are Copyright 1993-2022 Transaction Processing Performance Council. | |
select | |
c_count, | |
count(*) as custdist | |
from | |
( | |
select | |
c_custkey, | |
count(o_orderkey) | |
from | |
customer left outer join orders on | |
c_custkey = o_custkey | |
and o_comment not like '%express%requests%' | |
group by | |
c_custkey | |
) as c_orders (c_custkey, c_count) | |
group by | |
c_count | |
order by | |
custdist desc, | |
c_count desc; |