Last active
May 16, 2020 14:07
-
-
Save taufiqibrahim/06deede709c001d4aed873805a78a881 to your computer and use it in GitHub Desktop.
Apache Flink: SQL Client Walkthrough
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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