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
650 B
30 lines
650 B
3 years ago
|
--begin q01
|
||
|
-- $ID$
|
||
|
-- TPC-H/TPC-R Pricing Summary Report Query (Q1)
|
||
|
-- Functional Query Definition
|
||
|
-- Approved February 1998
|
||
|
:x
|
||
|
:o
|
||
|
select
|
||
|
l_returnflag,
|
||
|
l_linestatus,
|
||
|
sum(l_quantity) as sum_qty,
|
||
|
sum(l_extendedprice) as sum_base_price,
|
||
|
sum(l_extendedprice * (1 - l_discount)) as sum_disc_price,
|
||
|
sum(l_extendedprice * (1 - l_discount) * (1 + l_tax)) as sum_charge,
|
||
|
avg(l_quantity) as avg_qty,
|
||
|
avg(l_extendedprice) as avg_price,
|
||
|
avg(l_discount) as avg_disc,
|
||
|
count(*) as count_order
|
||
|
from
|
||
|
tpch.lineitem
|
||
|
where
|
||
|
l_shipdate <= ADD_DAYS(DATE '2000-02-28', -:1)
|
||
|
group by
|
||
|
l_returnflag,
|
||
|
l_linestatus
|
||
|
order by
|
||
|
l_returnflag,
|
||
|
l_linestatus;
|
||
|
--end q01
|