aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg-tpcds/q55.sql
blob: 3f42cc3c82f48bbc5116700dfb9554e8936368de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--!syntax_pg
--TPC-DS Q55

-- start query 1 in stream 0 using template ../query_templates/query55.tpl
select  i_brand_id brand_id, i_brand brand,
 	sum(ss_ext_sales_price) ext_price
 from plato.date_dim, plato.store_sales, plato.item
 where d_date_sk = ss_sold_date_sk
 	and ss_item_sk = i_item_sk
 	and i_manager_id=36
 	and d_moy=12
 	and d_year=2001
 group by i_brand, i_brand_id
 order by ext_price desc, i_brand_id
limit 100 ;

-- end query 1 in stream 0 using template ../query_templates/query55.tpl