blob: 9aa1db51538654607cf89b5a8c1c7f5413853cc2 [file] [log] [blame]
====
---- QUERY: TPCDS-Q20
select i_item_id
,i_item_desc
,i_category
,i_class
,i_current_price
,sum(cs_ext_sales_price) as itemrevenue
,sum(cs_ext_sales_price)*100/sum(sum(cs_ext_sales_price)) over
(partition by i_class) as revenueratio
from catalog_sales
,item
,date_dim
where cs_item_sk = i_item_sk
and i_category in ('Music', 'Electronics', 'Jewelry')
and cs_sold_date_sk = d_date_sk
and d_date between cast('1998-02-15' as timestamp)
and (cast('1998-02-15' as timestamp) + interval 30 days)
group by i_item_id
,i_item_desc
,i_category
,i_class
,i_current_price
order by i_category
,i_class
,i_item_id
,i_item_desc
,revenueratio
limit 100;
---- RESULTS
---- TYPES
INT, INT, STRING, DECIMAL
====