q3.sql 389 B

12345678910111213
  1. SELECT
  2. dt.d_year,
  3. item.i_brand_id brand_id,
  4. item.i_brand brand,
  5. SUM(ss_ext_sales_price) sum_agg
  6. FROM date_dim dt, store_sales, item
  7. WHERE dt.d_date_sk = store_sales.ss_sold_date_sk
  8. AND store_sales.ss_item_sk = item.i_item_sk
  9. AND item.i_manufact_id = 128
  10. AND dt.d_moy = 11
  11. GROUP BY dt.d_year, item.i_brand, item.i_brand_id
  12. ORDER BY dt.d_year, sum_agg DESC, brand_id
  13. LIMIT 100