forked from yuananf/tpcds-presto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq16.sql
23 lines (23 loc) · 995 Bytes
/
q16.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SELECT
count(DISTINCT cs_order_number) AS "order count ",
sum(cs_ext_ship_cost) AS "total shipping cost ",
sum(cs_net_profit) AS "total net profit "
FROM
catalog_sales cs1, date_dim, customer_address, call_center
WHERE
d_date BETWEEN CAST('2002-02-01' AS DATE) AND (CAST('2002-02-01' AS DATE) + INTERVAL '60' day)
AND cs1.cs_ship_date_sk = d_date_sk
AND cs1.cs_ship_addr_sk = ca_address_sk
AND ca_state = 'GA'
AND cs1.cs_call_center_sk = cc_call_center_sk
AND cc_county IN
('Williamson County', 'Williamson County', 'Williamson County', 'Williamson County', 'Williamson County')
AND EXISTS(SELECT *
FROM catalog_sales cs2
WHERE cs1.cs_order_number = cs2.cs_order_number
AND cs1.cs_warehouse_sk <> cs2.cs_warehouse_sk)
AND NOT EXISTS(SELECT *
FROM catalog_returns cr1
WHERE cs1.cs_order_number = cr1.cr_order_number)
ORDER BY count(DISTINCT cs_order_number)
LIMIT 100;