SELECT MAX(counted) FROM
(
SELECT COUNT(*) AS counted
FROM table_actions
WHERE status = "good"
GROUP BY user
) as counts;
Last active
August 29, 2015 13:56
-
-
Save libitte/9090829 to your computer and use it in GitHub Desktop.
Author
libitte
commented
Sep 27, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment