這裏我的日期值存儲在varchar,而我想要得到的結果,而日期 之間尋找在這裏是我的代碼,請看看我們如何轉換存儲爲varchar日期迄今
public function get_report($from1,$to1)
{
$from=DATE($from1);
$to=DATE($to1);
$this->db->order_by('customer_account_id','desc');
$this->db->where('Date(`date`) >= ',$from);
$this->db->where('Date(`date`) <= ',$to);
return $this->db->get('customer_accounts');
}
我DATE_FORMAT是這樣的31-01-2017
,當我使用我的代碼這樣的結果是沒有獲得