blob: 0ac08b3ba313cb9f9c4a9d4f05b180d2a2669133 [file] [log] [blame]
-- start query 1 in stream 0 using template query32.tpl
select sum(cs_ext_discount_amt) as "excess discount amount"
from
catalog_sales
,item
,date_dim
where
i_manufact_id = 269
and i_item_sk = cs_item_sk
and cast(d_date as timestamp) between cast('1998-03-18' as timestamp) and
(cast('1998-03-18' as timestamp) + interval 90 days)
and d_date_sk = cs_sold_date_sk
and cs_ext_discount_amt
> (
select
1.3 * avg(cs_ext_discount_amt)
from
catalog_sales
,date_dim
where
cs_item_sk = i_item_sk
and cast(d_date as timestamp) between cast('1998-03-18' as timestamp) and
(cast('1998-03-18' as timestamp) + interval 90 days)
and d_date_sk = cs_sold_date_sk
)
limit 100;
-- end query 1 in stream 0 using template query32.tpl