blob: 171a968627d0482a7f8fa89942c92c819a2805b5 [file] [log] [blame]
-- SQLBench-DS query 92 derived from TPC-DS query 92 under the terms of the TPC Fair Use Policy.
-- TPC-DS queries are Copyright 2021 Transaction Processing Performance Council.
-- This query was generated at scale factor 1.
select
sum(ws_ext_discount_amt) as `Excess Discount Amount`
from
web_sales
,item
,date_dim
where
i_manufact_id = 914
and i_item_sk = ws_item_sk
and d_date between '2001-01-25' and
(cast('2001-01-25' as date) + INTERVAL '90 DAYS')
and d_date_sk = ws_sold_date_sk
and ws_ext_discount_amt
> (
SELECT
1.3 * avg(ws_ext_discount_amt)
FROM
web_sales
,date_dim
WHERE
ws_item_sk = i_item_sk
and d_date between '2001-01-25' and
(cast('2001-01-25' as date) + INTERVAL '90 DAYS')
and d_date_sk = ws_sold_date_sk
)
order by sum(ws_ext_discount_amt)
LIMIT 100;