gpt4 book ai didi

php - 从 mysql 数据库中选择相似的值

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

我在 MySQL 数据库中有几个数据。在我的表中有一个名为 rank 的列。我想要的是当有人输入排名时说 25 那么结果应该显示相似(+ 或 -)排名 LIMIT10 的名称来自表格。

例子

mathew - 25
john - 26
joe - 25
stewart - 27
kelly - 24
brandon -23
magy - 22 .......etc.

谢谢马修

最佳答案

为此,您可以使用 MySQL 的 betweenlimit 子句:

$range = 5;  // you'll be selecting around this range. 
$min = $rank - $range;
$max = $rank + $range;
$limit = 10; // max number of results you want.

$query = "select * from table where rank between $min and $max limit $limit";

关于php - 从 mysql 数据库中选择相似的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2825296/

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