We are administering a sweepstakes for a client where we have a GUID tied to a contestant and the number of entries the contestant has acquired. I want to be able to draw winners based on the chance of winning corresponding to the number of entries.
GUID | Entries
--------------
1 | 1
2 | 5
3 | 2
4 | 7
So the results would be:
GUID
----
1
2
2
2
2
2
3
3
4
4
4
4
4
4
4
Basically I plan put the results in a spreadsheet and then use a random number generator to pick a row number between 1 and n, where n is the total number of entries. But of course if there is a way to easily select the winner programmatically, I'm all ears (or eyes as the case may be).
Thanks in advance.