Created
April 14, 2014 22:03
-
-
Save r38y/10685915 to your computer and use it in GitHub Desktop.
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
-- winning_count is a random number between 0 and 1 | |
-- times the sum of the weights | |
SELECT id | |
FROM ( | |
SELECT id, SUM(weight) OVER (ORDER BY id) S | |
FROM entries WHERE drawing_id = #{@drawing.id} | |
) Q | |
WHERE S >= winning_count | |
ORDER BY id | |
LIMIT 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment