aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg-tpcds/q72.sql
diff options
context:
space:
mode:
authorudovichenko-r <udovichenko-r@yandex-team.com>2024-11-19 14:58:38 +0300
committerudovichenko-r <udovichenko-r@yandex-team.com>2024-11-19 15:16:27 +0300
commit24521403b1c44303e043ba540c09b1fe991c7474 (patch)
tree341d1e7206bc7c143d04d2d96f05b6dc0655606d /yql/essentials/tests/sql/suites/pg-tpcds/q72.sql
parent72b3cd51dc3fb9d16975d353ea82fd85701393cc (diff)
downloadydb-24521403b1c44303e043ba540c09b1fe991c7474.tar.gz
YQL-19206 Move contrib/ydb/library/yql/tests/sql/suites -> yql/essentials/tests/sql/suites
commit_hash:d0ef1f92b09c94db7c2408f946d2a4c62b603f00
Diffstat (limited to 'yql/essentials/tests/sql/suites/pg-tpcds/q72.sql')
-rw-r--r--yql/essentials/tests/sql/suites/pg-tpcds/q72.sql32
1 files changed, 32 insertions, 0 deletions
diff --git a/yql/essentials/tests/sql/suites/pg-tpcds/q72.sql b/yql/essentials/tests/sql/suites/pg-tpcds/q72.sql
new file mode 100644
index 0000000000..1687f6f0e5
--- /dev/null
+++ b/yql/essentials/tests/sql/suites/pg-tpcds/q72.sql
@@ -0,0 +1,32 @@
+--!syntax_pg
+--TPC-DS Q72
+
+-- start query 1 in stream 0 using template ../query_templates/query72.tpl
+select i_item_desc
+ ,w_warehouse_name
+ ,d1.d_week_seq
+ ,sum(case when p_promo_sk is null then 1 else 0 end) no_promo
+ ,sum(case when p_promo_sk is not null then 1 else 0 end) promo
+ ,count(*) total_cnt
+from plato.catalog_sales
+join plato.inventory on (cs_item_sk = inv_item_sk)
+join plato.warehouse on (w_warehouse_sk=inv_warehouse_sk)
+join plato.item on (i_item_sk = cs_item_sk)
+join plato.customer_demographics on (cs_bill_cdemo_sk = cd_demo_sk)
+join plato.household_demographics on (cs_bill_hdemo_sk = hd_demo_sk)
+join plato.date_dim d1 on (cs_sold_date_sk = d1.d_date_sk)
+join plato.date_dim d2 on (inv_date_sk = d2.d_date_sk)
+join plato.date_dim d3 on (cs_ship_date_sk = d3.d_date_sk)
+left outer join plato.promotion on (cs_promo_sk=p_promo_sk)
+left outer join plato.catalog_returns on (cr_item_sk = cs_item_sk and cr_order_number = cs_order_number)
+where d1.d_week_seq = d2.d_week_seq
+ and inv_quantity_on_hand < cs_quantity
+ and d3.d_date > d1.d_date + 5
+ and hd_buy_potential = '1001-5000'
+ and d1.d_year = 2001
+ and cd_marital_status = 'M'
+group by i_item_desc,w_warehouse_name,d1.d_week_seq
+order by total_cnt desc, i_item_desc, w_warehouse_name, d_week_seq
+limit 100;
+
+-- end query 1 in stream 0 using template ../query_templates/query72.tpl