gpt4 book ai didi

php - CodeIgniter 数据库查询有错误但我没有看到

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

if ($this->input->get('beds')) 
$where['Bedrooms'] = $this->input->get('beds');

if ($this->input->get('baths'))
$where['Bathrooms'] = $this->input->get('baths');

$min_price = ($this->input->get('min_price'))
? $this->input->get('min_price')
: '0';

$max_price = ($this->input->get('max_price'))
? $this->input->get('max_price')
: '10000000';

$q = $this->db->select("*")
->where('ListingPrice <=', $max_price)
->where('ListingPrice >=', $min_price)
->limit(10)
->get();

你呢?您可以相信所有的值(value)都在那里。

错误是:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE ListingPrice <= '100000' AND ListingPrice >= '0' LIMIT 10' at line 2

最佳答案

我不使用 CodeIgniter,但您的查询中似乎没有 FROM 元素

关于php - CodeIgniter 数据库查询有错误但我没有看到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7652539/

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