Skip to content

Instantly share code, notes, and snippets.

@mizzy
Created February 14, 2025 22:25
Show Gist options
  • Save mizzy/774585268e81b49f38173f8e88622521 to your computer and use it in GitHub Desktop.
Save mizzy/774585268e81b49f38173f8e88622521 to your computer and use it in GitHub Desktop.
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