Files
secondo/Tools/Generators/TPC-H/queries/4.sql
2026-01-23 17:03:45 +08:00

29 lines
459 B
SQL

-- @(#)4.sql 2.1.8.1
-- TPC-H/TPC-R Order Priority Checking Query (Q4)
-- Functional Query Definition
-- Approved February 1998
:x
:o
select
o_orderpriority,
count(*) as order_count
from
orders
where
o_orderdate >= date ':1'
and o_orderdate < date ':1' + 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;
:n -1