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