1
0

query55.sql 443 B

1234567891011121314
  1. -- start query 1 in stream 0 using template query55.tpl and seed 2031708268
  2. select i_brand_id brand_id, i_brand brand,
  3. sum(ss_ext_sales_price) ext_price
  4. from date_dim, store_sales, item
  5. where d_date_sk = ss_sold_date_sk
  6. and ss_item_sk = i_item_sk
  7. and i_manager_id=13
  8. and d_moy=11
  9. and d_year=1999
  10. group by i_brand, i_brand_id
  11. order by ext_price desc, i_brand_id
  12. limit 100 ;
  13. -- end query 1 in stream 0 using template query55.tpl