我的数据看起来像这样
我想显示所有之前01-08-2018
的记录(包括 01-08-2018)但目前需要填写 02-08-2018,然后能够找到 01-08-2018 记录
我尝试获取这样的数据这是我的 where 子句:
$this->db->where("a.created_date <=",date("Y-m-d", strtotime($end_date)));
但它只显示 01-08-2018 之前的数据记录不包括 01-08-2018
我的英语真的很糟糕。请帮忙
我的数据看起来像这样
我想显示所有之前01-08-2018
的记录(包括 01-08-2018)但目前需要填写 02-08-2018,然后能够找到 01-08-2018 记录
我尝试获取这样的数据这是我的 where 子句:
$this->db->where("a.created_date <=",date("Y-m-d", strtotime($end_date)));
但它只显示 01-08-2018 之前的数据记录不包括 01-08-2018
我的英语真的很糟糕。请帮忙
希望对你有帮助 :
像这样之前添加date
功能a.created_date
:
$this->db->where("date(a.created_date) <= ", date("Y-m-d", strtotime($end_date)));
更多信息:https ://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html