我想从 codeigniter 中的数据库中获取记录,该记录具有小于给定日期的“日期”值。我使用了这段代码,它什么也没给我
$this->db->select('id, name');
$this->db->where('earliest_date_to_finish > ',$givenDate);
$query = $this->db->get('tasks');
问题出在 where 子句中。请建议我解决这个问题的方法
我想从 codeigniter 中的数据库中获取记录,该记录具有小于给定日期的“日期”值。我使用了这段代码,它什么也没给我
$this->db->select('id, name');
$this->db->where('earliest_date_to_finish > ',$givenDate);
$query = $this->db->get('tasks');
问题出在 where 子句中。请建议我解决这个问题的方法
你忘了这条线
$this->db->from('your_table');
$this->db->where('earliest_date_to_finish > ',$givenDate);
尝试这个
$this->db->where('earliest_date_to_finish < ',$givenDate);
$this->db->select('id, name');
$this->db->where('earliest_date_to_finish > ',$date);
$query = $this->db->get('tasks');
这段代码现在很好......但它有点慢......这就是问题的原因