blob: 09f2b7cf41871117eb221a7aa2793bc4dcd68fe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-- start query 1 in stream 0 using template query55.tpl and seed 2031708268
select i_brand_id brand_id, i_brand brand,
sum(ss_ext_sales_price) ext_price
from date_dim, store_sales, item
where d_date_sk = ss_sold_date_sk
and ss_item_sk = i_item_sk
and i_manager_id=13
and d_moy=11
and d_year=1999
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 query55.tpl
|