gpt4 book ai didi

php - codeigniter 事件记录查询 with where

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

我的查询中有三个 where 条件,我希望它们仅与 codeigniter 事件记录合并在数组中。

$this->db->where(array('id'=>5,'name'=>$name));  // I want to insert create_date >= DATE_SUB(NOW(), INTERVAL 1 MONTH) here in this where array

请不要建议任何解决方案,例如单独添加此条件。

谢谢!

最佳答案

试试这个

$this->db->where(array('id'=>5,'name'=>$name))
$this->db->where('create_date >=', "DATE_SUB(NOW(), INTERVAL 1 MONTH)")

关于php - codeigniter 事件记录查询 with where,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28940050/

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