gpt4 book ai didi

php - 从数据库中检索前 10 个

转载 作者:行者123 更新时间:2023-11-29 04:48:06 25 4
gpt4 key购买 nike

我有这个查询,但我只想返回基于 num_guess 的前 10 个。我不知道查询的格式。我不知道将 LIMIT 或 TOP 放在哪里。请帮忙!

"SELECT user,num_guess FROM game JOIN difficulty USING (difficulty_no) WHERE difficulty_no=2 ORDER BY num_guess ASC "

最佳答案

使用 limit 10

像这样

"SELECT user,num_guess FROM game 
JOIN difficulty USING (difficulty_no)
WHERE difficulty_no=2 ORDER BY num_guess ASC limit 10"

关于php - 从数据库中检索前 10 个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15727530/

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