-
Notifications
You must be signed in to change notification settings - Fork 94
Closed
Labels
recipeuse caseA tutorial with an extended business use caseA tutorial with an extended business use case
Description
Query to figure out who is giving money to whom, example code (this code sample is not ksql-ready, it needs to be adapted):
SELECT affiliation, SUM(amount) AS amount
FROM (
SELECT *
FROM (
SELECT
t.amt AS amount,
t.occupation AS occupation,
c.affiliation AS affiliation,
FROM (
SELECT
trans.TRANSACTION_AMT AS amt,
trans.OCCUPATION AS occupation,
cmte.CAND_ID AS CAND_ID
FROM [campaign_funding.transactions] trans
RIGHT OUTER JOIN EACH (
SELECT
CMTE_ID,
FIRST(CAND_ID) AS CAND_ID
FROM [campaign_funding.committees]
GROUP EACH BY CMTE_ID ) cmte
ON trans.CMTE_ID = cmte.CMTE_ID) AS t
RIGHT OUTER JOIN EACH (
SELECT
CAND_ID,
FIRST(CAND_PTY_AFFILIATION) AS affiliation,
FROM [campaign_funding.candidates]
GROUP EACH BY CAND_ID) c
ON t.CAND_ID = c.CAND_ID )
WHERE occupation CONTAINS "ENGINEER")
GROUP BY affiliation
ORDER BY amount DESC
The mechanics of matching can be similar to https://developer.confluent.io/tutorials/online-dating/confluent.html
Inspiration: https://kiosk-dot-codelabs-site.appspot.com/codelabs/cloud-bq-campaign-finance/index.html?index=..%2F..index#7
Metadata
Metadata
Assignees
Labels
recipeuse caseA tutorial with an extended business use caseA tutorial with an extended business use case