Sign in
apache
/
drill-test-framework
/
9324c6675efda54616532025bc4b6555370790f6
/
.
/
framework
/
resources
/
Functional
/
tpcds
/
variants
/
json
/
q1_1.sql
blob: b7260f9835a396b39839d3528fe37e158ae7d9bb [
file
] [
log
] [
blame
]
-- /* q1 tpcds */
SELECT
COUNT
(
DISTINCT
c_customer_sk
)
as
c_customer_sk
FROM
customer
WHERE
c_customer_sk
IN
(
SELECT
SS_CUSTOMER_SK
FROM
store_sales
);