You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
602 B

--begin q16
-- $ID$
-- TPC-H/TPC-R Parts/Supplier Relationship Query (Q16)
-- Functional Query Definition
-- Approved February 1998
:x
:o
select
p_brand,
p_type,
p_size,
count(distinct ps_suppkey) as supplier_cnt
from
tpch.partsupp,
tpch.part
where
p_partkey = ps_partkey
and p_brand <> ':1'
and p_type not like ':2%'
and p_size in (:3, :4, :5, :6, :7, :8, :9, :10)
and ps_suppkey not in (
select
s_suppkey
from
tpch.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;
--end q16