Files
turso/perf/tpc-h/queries/4.sql
2025-10-27 16:23:38 +02:00

25 lines
365 B
SQL

select
o_orderpriority,
count(*) as order_count
from
orders
where
o_orderdate >= '1997-06-01'
and o_orderdate < '1997-09-01' -- modified not to include cast({'month': 3} as interval)
and exists (
select
*
from
lineitem
where
l_orderkey = o_orderkey
and l_commitdate < l_receiptdate
)
group by
o_orderpriority
order by
o_orderpriority;