gpt4 book ai didi

php - 需要获得最接近的最小值和最大值

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

这里我有一个关于获取最接近的最小值和最大值的查询。我有一个范围:

2.43 - 3.57 lakhs

现在我需要获取最接近最小值和最大值的值。

我尝试过此查询,但没有得到所需的结果。

$othsimlar_prices = "select ABS(exshowroom - ".$price_query['minprice'].") as minprice,
ABS(exshowroom - ".$price_query['maxprice'].") as maxprice,
make,
model
from ncp_variant_cache
order by maxprice";

最佳答案

为什么不使用“where”和“and”?

$othsimlar_prices = "select * 
from ncp_variant_cache
where minprice=ABS(exshowroom - ".$price_query['minprice'].")
and maxprice=ABS(exshowroom - ".$price_query['maxprice'].")
order by maxprice"

;

或者,如果您只有一列价格,您可以:

从 your_table 中选择 *,其中价格介于间隔 1 和间隔 2 之间

关于php - 需要获得最接近的最小值和最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32332447/

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