-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathhq21.sql
38 lines (36 loc) · 1.03 KB
/
hq21.sql
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
27
28
29
30
31
32
33
34
35
36
37
38
-- Copyright (c) 2020, Oracle and/or its affiliates.
-- Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/
-- Coypright (c) 2020, Transaction Processing Performance Council
-- TPC-H Query 21 - Suppliers Who Kept Orders Waiting
SELECT
S_NAME, COUNT(*) AS NUMWAIT
FROM
SUPPLIER,
LINEITEM L1,
ORDERS,
NATION
WHERE
S_SUPPKEY = L1.L_SUPPKEY
AND O_ORDERKEY = L1.L_ORDERKEY
AND O_ORDERSTATUS = 'F'
AND L1.L_RECEIPTDATE > L1.L_COMMITDATE
AND EXISTS( SELECT
*
FROM
LINEITEM L2
WHERE
L2.L_ORDERKEY = L1.L_ORDERKEY
AND L2.L_SUPPKEY <> L1.L_SUPPKEY)
AND NOT EXISTS( SELECT
*
FROM
LINEITEM L3
WHERE
L3.L_ORDERKEY = L1.L_ORDERKEY
AND L3.L_SUPPKEY <> L1.L_SUPPKEY
AND L3.L_RECEIPTDATE > L3.L_COMMITDATE)
AND S_NATIONKEY = N_NATIONKEY
AND N_NAME = 'SAUDI ARABIA'
GROUP BY S_NAME
ORDER BY NUMWAIT DESC , S_NAME
LIMIT 100;