我正在检索两个日期范围之间的数据,我也得到了记录,但是当我选择开始日期和结束日期相同时,即使我在数据库表中记录了该日期,只有那些记录有不同的时间。如果有人知道解决方案,请告诉我。以下是我在日期范围之间获取记录的查询。 提前谢谢。
$this->db->select('*');
$this->db->from('transaction_tbl');
$this->db->where('user_id',$user_id);
$this->db->where('date >=',$startDate);
$this->db->where('date <=',$endDate);
$query = $this->db->get();
答案 0 :(得分:1)
您还需要指定两个日期之间的时间
$startDate=date("Y m d",strtotime($startDate)).' 00:00'; //00:00 start day time
$endDate=date("Y m d",strtotime($endDate)).' 23:59'; //23:59 end day time
$this->db->select('*');
$this->db->from('transaction_tbl');
$this->db->where('user_id',$user_id);
$this->db->where('date >=',$startDate);
$this->db->where('date <=',$endDate);
$query = $this->db->get();
答案 1 :(得分:0)
试试这个
$this->db->query("SELECT * FROM transaction_tbl WHERE user_id = '$user_id' && date BETWEEN '$startDate' AND '$endDate'");
答案 2 :(得分:0)
$this->db->select('*');
$this->db->from('transaction_tbl');
$this->db->where('user_id',$user_id);
$this->db->where('date <=',$startDate);
$this->db->where('date >=',$endDate);
$query = $this->db->get();
答案 3 :(得分:0)
在您的模型中尝试此操作。
function your_model($user_id,$startDate,$endDate){
$query=$this->db->query("SELECT * FROM transaction_tbl WHERE user_id =
$user_id && date BETWEEN $startDate AND $endDate");
return $query->result_array();
}