blob: a8fed2fb3ae6fe53d56f61776b48aa2429c0db0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--!syntax_pg
--TPC-DS Q42
-- start query 1 in stream 0 using template ../query_templates/query42.tpl
select dt.d_year
,item.i_category_id
,item.i_category
,sum(ss_ext_sales_price)
from plato.date_dim dt
,plato.store_sales
,plato.item
where dt.d_date_sk = store_sales.ss_sold_date_sk
and store_sales.ss_item_sk = item.i_item_sk
and item.i_manager_id = 1
and dt.d_moy=12
and dt.d_year=1998
group by dt.d_year
,item.i_category_id
,item.i_category
order by sum(ss_ext_sales_price) desc,dt.d_year
,item.i_category_id
,item.i_category
limit 100 ;
-- end query 1 in stream 0 using template ../query_templates/query42.tpl
|