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.
41 lines
585 B
41 lines
585 B
--begin q18
|
|
-- $ID$
|
|
-- TPC-H/TPC-R Large Volume Customer Query (Q18)
|
|
-- Function Query Definition
|
|
-- Approved February 1998
|
|
:x
|
|
:o
|
|
select
|
|
c_name,
|
|
c_custkey,
|
|
o_orderkey,
|
|
o_orderdate,
|
|
o_totalprice,
|
|
sum(l_quantity)
|
|
from
|
|
tpch.customer,
|
|
tpch.orders,
|
|
tpch.lineitem
|
|
where
|
|
o_orderkey in (
|
|
select
|
|
l_orderkey
|
|
from
|
|
tpch.lineitem
|
|
group by
|
|
l_orderkey having
|
|
sum(l_quantity) > :1
|
|
)
|
|
and c_custkey = o_custkey
|
|
and o_orderkey = l_orderkey
|
|
group by
|
|
c_name,
|
|
c_custkey,
|
|
o_orderkey,
|
|
o_orderdate,
|
|
o_totalprice
|
|
order by
|
|
o_totalprice desc,
|
|
o_orderdate;
|
|
:n 100;
|
|
--end q18
|
|
|