mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
27 lines
467 B
SQL
27 lines
467 B
SQL
-- $Id: tpch17.sql 3647 2007-12-13 21:20:41Z rdempsey $
|
|
-- TPC-H/TPC-R Small-Quantity-Order Revenue Query (Q17)
|
|
-- Functional Query Definition
|
|
-- Approved February 1998
|
|
|
|
define 1 = Brand#23
|
|
define 2 = 'MED BOX'
|
|
|
|
select
|
|
sum(l_extendedprice) / 7.0 as avg_yearly
|
|
from
|
|
lineitem,
|
|
part
|
|
where
|
|
p_partkey = l_partkey
|
|
and p_brand = '&1'
|
|
and p_container = '&2'
|
|
and l_quantity < (
|
|
select
|
|
0.2 * avg(l_quantity)
|
|
from
|
|
lineitem
|
|
where
|
|
l_partkey = p_partkey
|
|
);
|
|
|