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.
30 lines
466 B
30 lines
466 B
3 years ago
|
--begin q04
|
||
|
-- $ID$
|
||
|
-- 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
|
||
|
tpch.orders
|
||
|
where
|
||
|
o_orderdate >= date ':1'
|
||
|
and o_orderdate < ADD_MONTHS(date ':1', 3)
|
||
|
and exists (
|
||
|
select
|
||
|
*
|
||
|
from
|
||
|
tpch.lineitem
|
||
|
where
|
||
|
l_orderkey = o_orderkey
|
||
|
and l_commitdate < l_receiptdate
|
||
|
)
|
||
|
group by
|
||
|
o_orderpriority
|
||
|
order by
|
||
|
o_orderpriority;
|
||
|
--end q04
|