mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-22 02:34:20 +01:00
34 lines
503 B
SQL
34 lines
503 B
SQL
-- LIMBO_SKIP: subquery in where not supported
|
|
|
|
|
|
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#45'
|
|
and p_type not like 'SMALL PLATED%'
|
|
and p_size in (19, 17, 16, 23, 10, 4, 38, 11)
|
|
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;
|