gpt4 book ai didi

php - 从最近 20 条记录中随机返回 5 条记录

转载 作者:行者123 更新时间:2023-11-29 01:09:16 25 4
gpt4 key购买 nike

只是我有以下内容

有记录的表,我想从最后 20 条记录中随机返回 5 条记录(按 id desc 排序)

那么我们如何才能快速做到这一点感谢您的帮助。

最佳答案

select * from
(
select * from your_table
order by id desc limit 20
) as lastest_results
order by rand()
limit 5;

关于php - 从最近 20 条记录中随机返回 5 条记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6945784/

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