Tagged Questions

3
votes
3answers
930 views

SQL : select one row randomly, but taking into account a weight

I'm using MySQL. I have a table which looks like that: id: primary key content: varchar weight: int What I want to do is randomly select one row from this table, but taking into account the weight. ...