mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-04 12:02:55 +00:00
38 lines
579 B
SQL
38 lines
579 B
SQL
-- $ID$
|
|
-- TPC-H/TPC-R Parts/Supplier Relationship Query (Q16)
|
|
-- Functional Query Definition
|
|
-- Approved February 1998
|
|
|
|
|
|
select
|
|
p_brand,
|
|
p_type,
|
|
p_size,
|
|
count(distinct ps_suppkey) as supplier_cnt
|
|
from
|
|
partsupp,
|
|
part
|
|
where
|
|
p_partkey = ps_partkey
|
|
and p_brand <> 'Brand#43'
|
|
and p_type not like 'PROMO POLISHED%'
|
|
and p_size in (35, 5, 42, 13, 11, 40, 50, 47)
|
|
and ps_suppkey not in (
|
|
select
|
|
s_suppkey
|
|
from
|
|
supplier
|
|
where
|
|
s_comment like '%Customer%Complaints%'
|
|
)
|
|
group by
|
|
p_brand,
|
|
p_type,
|
|
p_size
|
|
order by
|
|
supplier_cnt desc,
|
|
p_brand,
|
|
p_type,
|
|
p_size
|
|
;
|