This file contains hidden or 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
-- BY Kakha Giorgashvili (KAKHA13) | |
-- Rating system query | |
-- score = Users Score | |
-- timer = Interval from begining to end | |
-- 1.8 is gravity what helps query to get 100% right result | |
SELECT | |
*, | |
(`score` - 1) / POWER(`timer`, 1.8) AS rating | |
FROM |
NewerOlder