Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Como adicionar pesos a uma tabela MySQL e selecionar valores aleatórios de acordo com eles?


Encontrei este pequeno algoritmo em Quod Libet. Você provavelmente poderia traduzi-lo para algum SQL procedural.
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