gpt4 book ai didi

php - 在 CodeIgniterWhere 子句中添加子字符串

转载 作者:行者123 更新时间:2023-11-29 18:03:59 24 4
gpt4 key购买 nike

是否可以在事件查询中添加子字符串?

我有这个例子,当我用纯sql写出来时它可以工作。但是,当我将其写入 CI 中的事件查询时,结果不会显示。我想知道是否有人可以帮助验证这是否正确。

        $this->db->distinct();
$this->db->select('user_table.id','user_table.first_name','user_table.last_name','user_table.email','user_table.created_on');
$this->db->from($this->user_table);
$this->db->join($this->account_items_table,'user_accounts.id = account_items.user_id','LEFT');
$this->db->where('SUBSTRING(account_items.key,1,2)',$input);

最佳答案

可能 CI 在表达式周围添加反引号,在 where() 中将第三个参数传递为 false

$this->db->where('SUBSTRING(account_items.key,1,2)',$input,false);

关于php - 在 CodeIgniterWhere 子句中添加子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48079430/

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