All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sql.presto.tpcds.q22.sql Maven / Gradle / Ivy

There is a newer version: 350
Show newest version
SELECT
  "i_product_name"
, "i_brand"
, "i_class"
, "i_category"
, "avg"("inv_quantity_on_hand") "qoh"
FROM
  ${database}.${schema}.inventory
, ${database}.${schema}.date_dim
, ${database}.${schema}.item
WHERE ("inv_date_sk" = "d_date_sk")
   AND ("inv_item_sk" = "i_item_sk")
   AND ("d_month_seq" BETWEEN 1200 AND (1200 + 11))
GROUP BY ROLLUP (i_product_name, i_brand, i_class, i_category)
ORDER BY "qoh" ASC, "i_product_name" ASC, "i_brand" ASC, "i_class" ASC, "i_category" ASC
LIMIT 100




© 2015 - 2024 Weber Informatics LLC | Privacy Policy