gpt4 book ai didi

php - PDO 大于小于

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

public function lookForWinner($current_game, $win_cost) {
$sql = "SELECT * FROM game" . $current_game . " WHERE from <= ? AND to >= ?";
$query = $this->db->prepare($sql);
$query->execute(array($win_cost, $win_cost));
if ($query->rowCount()) {
$lookForWinner = $query->fetch(PDO::FETCH_ASSOC);
return $lookForWinner;
}
return false;
}


$lookforwinner = $objGame->lookForWinner($current_game, $wincost);

我正在尝试该代码,但总是返回 false。我检查了我的参数:$current_game = "1"$wincost = 0.19276355021

wincost 是 float 类型。我的 from 和 to 实体类型是 mysql 中的文本。但我也尝试过使用 float 类型,结果是相同的。

enter image description here

enter image description here

最佳答案

对保留字使用反引号,这里有 2 个

 WHERE `from` <= ? AND `to` >= ?

但是真的要改变你的列名,总是不得不转义它们很烦人

关于php - PDO 大于小于,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33901059/

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