File size: 370 Bytes
59f720f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
-- using default substitutions
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' month;
where rownum <= -1;
|