Getting data posted in between two dates

后端 未结 10 1723
无人及你
无人及你 2020-12-08 00:15

How can I retrieve data from the database by querying records between two dates using CodeIgniter\'s activerecord?

10条回答
  •  一整个雨季
    2020-12-08 01:05

    if you date filed is timestamp then this is the easy way to get record

    $this->db->where('DATE(RecordDate) >=', date('Y-m-d',strtotime($startDate)));
    $this->db->where('DATE(RecordDate) <=', date('Y-m-d',strtotime($endDate)));
    

提交回复
热议问题