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

MySQL Selecione 3 linhas aleatórias onde a soma de três linhas é menor que o valor


aqui está outra solução:
SELECT t1.item_id as id1, t2.item_id as id2, t3.item_id as i3
FROM items t1, items t2, items t3
WHERE
t1.item_id <> t2.item_id and
t1.item_id <> t3.item_id and
t2.item_id <> t3.item_id and
(t1.item_price + t2.item_price + t3.item_price) <= 300
order by rand()
limit 1

opcionalmente você pode filtrar por soma mínima