Skip to content

Instantly share code, notes, and snippets.

@mattm
Last active April 23, 2017 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattm/63b9a55c1f7f122e921472628d6c9f30 to your computer and use it in GitHub Desktop.
Save mattm/63b9a55c1f7f122e921472628d6c9f30 to your computer and use it in GitHub Desktop.
Charges with Varible
SET @total := (SELECT SUM(amount) FROM charges);
SELECT *, ROUND(amount / @total * 100) AS percent
FROM charges;
+----+--------+---------+
| id | amount | percent |
+----+--------+---------+
| 1 | 18.00 | 30 |
| 2 | 15.00 | 25 |
| 3 | 27.00 | 45 |
+----+--------+---------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment