讨论数量:
select *
from t,
(select @sum := 0) as t1
where (@sum := @sum + price) <= 10000;
或者
select *
from t as t1
where (select sum(t2.price) from t as t2 where t2.slno <= t1.slno) <= 10000;
select *
from t,
(select @sum := 0) as t1
where (@sum := @sum + price) <= 10000;
或者
select *
from t as t1
where (select sum(t2.price) from t as t2 where t2.slno <= t1.slno) <= 10000;
推荐文章: