SQL在Codeigniter中获得的记录少于“日期”记录

时间:2013-09-15 10:05:12

标签: php mysql codeigniter

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

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

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

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

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

3 个答案:

答案 0 :(得分:1)

你忘记了这一行

     $this->db->from('your_table');

答案 1 :(得分:1)

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

试试这个

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

答案 2 :(得分:0)

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


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



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

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