gpt4 book ai didi

php - SQL:从数据库中选择最多一个数字(大小)

转载 作者:行者123 更新时间:2023-11-29 06:10:16 26 4
gpt4 key购买 nike

我想选择不超过特定数量(大小)的行。我的 SQL ( SQL Fiddle ):

id  user_id     storage
1 1 1983349
2 1 42552
3 1 367225
4 1 1357899
37 1 9314493

我只想选择不超过特定数量(大小)的所有行。像这里这样:

Select * from uploads where storage < 410000

它应该在这里得到这样的东西:

id  user_id     storage
2 1 42552
3 1 367225

ID“2”和“3”的摘要是 409777。

最佳答案

您需要某种方法来获得累计总和。在 MySQL 中,最简单的方法是使用变量:

select u.*
from (select u.*, (@s := @s + storage) as cume_storage
from uploads u cross join (select @s := 0) params
order by id
) u
where cume_storage < 410000;

关于php - SQL:从数据库中选择最多一个数字(大小),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38658698/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com