1
0

query96.sql 525 B

12345678910111213141516
  1. -- start query 1 in stream 0 using template query96.tpl and seed 1819994127
  2. select count(*)
  3. from store_sales
  4. ,household_demographics
  5. ,time_dim, store
  6. where ss_sold_time_sk = time_dim.t_time_sk
  7. and ss_hdemo_sk = household_demographics.hd_demo_sk
  8. and ss_store_sk = s_store_sk
  9. and time_dim.t_hour = 16
  10. and time_dim.t_minute >= 30
  11. and household_demographics.hd_dep_count = 6
  12. and store.s_store_name = 'ese'
  13. order by count(*)
  14. limit 100;
  15. -- end query 1 in stream 0 using template query96.tpl