citus/src/test/regress/sql/multi_tpch_query14.sql

21 lines
410 B
SQL

--
-- MULTI_TPCH_QUERY14
--
-- Query #14 from the TPC-H decision support benchmark
SELECT
100.00 * sum(case
when p_type like 'PROMO%'
then l_extendedprice * (1 - l_discount)
else 0
end) / sum(l_extendedprice * (1 - l_discount)) as promo_revenue
FROM
lineitem,
part
WHERE
l_partkey = p_partkey
AND l_shipdate >= date '1995-09-01'
AND l_shipdate < date '1995-09-01' + interval '1' year;