Cross Join
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 id, amount, ROUND(amount / total * 100) AS percent | |
FROM charges | |
CROSS JOIN (SELECT SUM(amount) AS total FROM charges) t; | |
+----+--------+---------+ | |
| 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