Skip to content

Commit b7cc7dd

Browse files
committed
Runtime: 517 ms (Top 98.58%) | Memory: 999999999 MB (Top 100.00%)
1 parent 5d22c7b commit b7cc7dd

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
SELECT u.name as name , SUM(t.amount) as balance
2-
FROM
1+
-- Runtime: 517 ms (Top 98.58%) | Memory: 999999999 MB (Top 100.00%)
2+
ELECT u.name as name , SUM(t.amount) as balance
3+
FROM
34
USERS u JOIN TRANSACTIONS t on u.account=t.account
4-
GROUP BY
5-
t.ACCOUNT HAVING balance>10000;
5+
GROUP BY
6+
t.ACCOUNT HAVING balance>10000;

0 commit comments

Comments
 (0)