-1

我想从 codeigniter 中的数据库中获取记录,该记录具有小于给定日期的“日期”值。我使用了这段代码,它什么也没给我

$this->db->select('id, name');

$this->db->where('earliest_date_to_finish > ',$givenDate);

$query = $this->db->get('tasks');

问题出在 where 子句中。请建议我解决这个问题的方法

4

3 回答 3

1

你忘了这条线

     $this->db->from('your_table');
于 2013-09-15T10:08:47.123 回答
1
$this->db->where('earliest_date_to_finish > ',$givenDate);

尝试这个

$this->db->where('earliest_date_to_finish < ',$givenDate);
于 2013-09-15T10:16:56.110 回答
0
$this->db->select('id, name');


$this->db->where('earliest_date_to_finish > ',$date);



$query = $this->db->get('tasks');

这段代码现在很好......但它有点慢......这就是问题的原因

于 2013-09-15T10:22:20.397 回答