Mysql
 sql >> Database >  >> RDS >> Mysql

Come aggiungere pesi a una tabella MySQL e selezionare valori casuali in base a questi?

Ho trovato questo piccolo algoritmo in Quod Libet. Probabilmente potresti tradurlo in un SQL procedurale.

function WeightedShuffle(list of items with weights):
  max_score ← the sum of every item’s weight
  choice ← random number in the range [0, max_score)
  current ← 0
  for each item (i, weight) in items:  
    current ← current + weight  
    if current ≥ choice or i is the last item:  
      return item i