Perhaps you could do this with a subquery:
Select max(points_over_Score) from (Select points/score AS points_over_score from users);
And as thesunneversets mentioned in the comment could possibly be shortened to
SELECT MAX(points/score) FROM users;
You write a description of what you are trying to do, does not make it clear why your example has SUM , so I did not use it.
In addition, questions like this one are more suitable for stackoverflow.com . You can specify your own question to ask the moderator to reschedule it.
FrustratedWithFormsDesigner
source share