aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg-tpcds/q38.sql
blob: f27da36e4140367d72f5a3a7bb98bbbd617ba539 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--!syntax_pg
--TPC-DS Q38

-- start query 1 in stream 0 using template ../query_templates/query38.tpl
select  count(*) from (
    select distinct c_last_name, c_first_name, d_date
    from plato.store_sales, plato.date_dim, plato.customer
          where store_sales.ss_sold_date_sk = date_dim.d_date_sk
      and store_sales.ss_customer_sk = customer.c_customer_sk
      and d_month_seq between 1212 and 1212 + 11
  intersect
    select distinct c_last_name, c_first_name, d_date
    from plato.catalog_sales, plato.date_dim, plato.customer
          where catalog_sales.cs_sold_date_sk = date_dim.d_date_sk
      and catalog_sales.cs_bill_customer_sk = customer.c_customer_sk
      and d_month_seq between 1212 and 1212 + 11
  intersect
    select distinct c_last_name, c_first_name, d_date
    from plato.web_sales, plato.date_dim, plato.customer
          where web_sales.ws_sold_date_sk = date_dim.d_date_sk
      and web_sales.ws_bill_customer_sk = customer.c_customer_sk
      and d_month_seq between 1212 and 1212 + 11
) hot_cust
limit 100;

-- end query 1 in stream 0 using template ../query_templates/query38.tpl