Skip to content

Instantly share code, notes, and snippets.

@taufiqibrahim
Last active May 16, 2020 14:07
Show Gist options
  • Save taufiqibrahim/06deede709c001d4aed873805a78a881 to your computer and use it in GitHub Desktop.
Save taufiqibrahim/06deede709c001d4aed873805a78a881 to your computer and use it in GitHub Desktop.
Apache Flink: SQL Client Walkthrough
SELECT
do_no,
SUM(amount) AS amount_agg,
SUM(selling_amount) AS selling_amount_agg,
SUM(discount_amount) AS discount_amount_agg
FROM order_billing
GROUP BY
do_no
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment