Created
February 14, 2025 22:25
-
-
Save mizzy/774585268e81b49f38173f8e88622521 to your computer and use it in GitHub Desktop.
This file contains 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 | |
"Actions Workflow" AS workflow, | |
SUM(Quantity) AS sum | |
FROM | |
'f1adc48a_2025-02-14_7.csv' | |
WHERE | |
Product = 'Actions' | |
AND Date BETWEEN '2025-02-01' AND '2025-02-14' | |
GROUP BY | |
workflow | |
ORDER BY | |
sum DESC | |
LIMIT | |
10; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment