Files
neon/test_runner/performance/tpc-h/queries/4.sql
2022-12-08 15:32:49 +00:00

29 lines
453 B
SQL

-- $ID$
-- TPC-H/TPC-R Order Priority Checking Query (Q4)
-- Functional Query Definition
-- Approved February 1998
select
o_orderpriority,
count(*) as order_count
from
orders
where
o_orderdate >= date '1996-12-01'
and o_orderdate < date '1996-12-01' + interval '3' month
and exists (
select
*
from
lineitem
where
l_orderkey = o_orderkey
and l_commitdate < l_receiptdate
)
group by
o_orderpriority
order by
o_orderpriority
;