blob: 99ad7f0c4ef35aa358b6e93805f7ca11b6b8381e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-- TPC-H/TPC-R Promotion Effect Query (Q14)
-- TPC TPC-H Parameter Substitution (Version 2.17.2 build 0)
-- using 1680793381 as a seed to the RNG
$border = Date("1994-08-01");
select
100.00 * sum(case
when StartsWith(p.p_type, 'PROMO')
then l.l_extendedprice * (1 - l.l_discount)
else 0
end) / sum(l.l_extendedprice * (1 - l.l_discount)) as promo_revenue
from
plato.lineitem as l
join
plato.part as p
on
l.l_partkey = p.p_partkey
where
cast(l.l_shipdate as timestamp) >= $border
and cast(l.l_shipdate as timestamp) < ($border + Interval("P31D"));
|