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

tpcds.query55.sql Maven / Gradle / Ivy

There is a newer version: 2.0.0_preview_973
Show newest version
select  i_brand_id brand_id, i_brand brand,
 	sum(ss_ext_sales_price) ext_price
 from date_dim, store_sales, item
 where d_date_sk = ss_sold_date_sk
 	and ss_item_sk = i_item_sk
 	and i_manager_id=28
 	and d_moy=11
 	and d_year=1999
 group by i_brand, i_brand_id
 order by ext_price desc, i_brand_id
 limit 100




© 2015 - 2024 Weber Informatics LLC | Privacy Policy