query82.sql 619 B

1234567891011121314151617
  1. -- start query 1 in stream 0 using template query82.tpl and seed 55585014
  2. select i_item_id
  3. ,i_item_desc
  4. ,i_current_price
  5. from item, inventory, date_dim, store_sales
  6. where i_current_price between 49 and 49+30
  7. and inv_item_sk = i_item_sk
  8. and d_date_sk=inv_date_sk
  9. and d_date between cast('2001-01-28' as date) and (cast('2001-01-28' as date) + 60 days)
  10. and i_manufact_id in (80,675,292,17)
  11. and inv_quantity_on_hand between 100 and 500
  12. and ss_item_sk = i_item_sk
  13. group by i_item_id,i_item_desc,i_current_price
  14. order by i_item_id
  15. limit 100;
  16. -- end query 1 in stream 0 using template query82.tpl