sql >> Base de Datos >  >> RDS >> Mysql

MySQL Seleccione 3 filas aleatorias donde la suma de tres filas es menor que el valor

aquí hay otra solución:

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 puede filtrar por suma mínima