query37.sql 626 B

1234567891011121314151617
  1. -- start query 1 in stream 0 using template query37.tpl and seed 301843662
  2. select i_item_id
  3. ,i_item_desc
  4. ,i_current_price
  5. from item, inventory, date_dim, catalog_sales
  6. where i_current_price between 39 and 39 + 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-16' as date) and (cast('2001-01-16' as date) + 60 days)
  10. and i_manufact_id in (765,886,889,728)
  11. and inv_quantity_on_hand between 100 and 500
  12. and cs_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 query37.tpl