| -- SQLBench-DS query 48 derived from TPC-DS query 48 under the terms of the TPC Fair Use Policy. |
| -- TPC-DS queries are Copyright 2021 Transaction Processing Performance Council. |
| -- This query was generated at scale factor 1. |
| select sum (ss_quantity) |
| from store_sales, store, customer_demographics, customer_address, date_dim |
| where s_store_sk = ss_store_sk |
| and ss_sold_date_sk = d_date_sk and d_year = 2001 |
| and |
| ( |
| ( |
| cd_demo_sk = ss_cdemo_sk |
| and |
| cd_marital_status = 'W' |
| and |
| cd_education_status = '2 yr Degree' |
| and |
| ss_sales_price between 100.00 and 150.00 |
| ) |
| or |
| ( |
| cd_demo_sk = ss_cdemo_sk |
| and |
| cd_marital_status = 'S' |
| and |
| cd_education_status = 'Advanced Degree' |
| and |
| ss_sales_price between 50.00 and 100.00 |
| ) |
| or |
| ( |
| cd_demo_sk = ss_cdemo_sk |
| and |
| cd_marital_status = 'D' |
| and |
| cd_education_status = 'Primary' |
| and |
| ss_sales_price between 150.00 and 200.00 |
| ) |
| ) |
| and |
| ( |
| ( |
| ss_addr_sk = ca_address_sk |
| and |
| ca_country = 'United States' |
| and |
| ca_state in ('IL', 'KY', 'OR') |
| and ss_net_profit between 0 and 2000 |
| ) |
| or |
| (ss_addr_sk = ca_address_sk |
| and |
| ca_country = 'United States' |
| and |
| ca_state in ('VA', 'FL', 'AL') |
| and ss_net_profit between 150 and 3000 |
| ) |
| or |
| (ss_addr_sk = ca_address_sk |
| and |
| ca_country = 'United States' |
| and |
| ca_state in ('OK', 'IA', 'TX') |
| and ss_net_profit between 50 and 25000 |
| ) |
| ) |
| ; |
| |