将datetime更改为日期,以便在codeigniter中进行比较



我有一个带有日期时间变量的表,它显示的值与2015-06-22 22:30:00.030格式的记录相似。

如何在codeigniter中将日期时间转换为日期格式,以便将其与表单中输入的日期(不包括时间)进行比较?这是我的查询,它给了我这个错误:

您的SQL语法有错误;查看手册与您的MySQL服务器版本相对应,以便使用正确的语法接近"截止日期")>"%2015/05/31%"和merchant_transactions。CAST(日期时间为日期)<'%2'在7号线

    $search_where = "merchant_transactions.CAST(datetime As Date) > '%".$from."%' AND merchant_transactions.CAST(datetime As Date) < '%".$to."%'";
   $this->db->where($search_where);
   return $this->db->get();

另一个选项是使用SQL BETWEEN函数来比较日期,但您需要将传入日期转换为日期格式:YYYY-MM-DD

$from = date('Y-m-d', strtotime($from_date));
$to = date('Y-m-d', strtotime($to_date));
$search_where = 'CAST(merchant_transactions.datetime As Date) BETWEEN "'.$from.'" AND "'.$to.'"';

您可以使用strtotime来解析输入。我还认为您的SQL应该进行一些更改。

$time = '2015/05/31';
$from = strtotime($time);
$m_from = date('m', $from);
$d_from = date('d', $from);
$y_from = date('Y', $from);
$to = strtotime($time);
$m_to = date('m', $to);
$d_to = date('d', $to);
$y_to = date('Y', $to);
 $search_where = "CAST(merchant_transactions.datetime As Date) > '".$y_from."-".$m_from."-".$d_from."' AND CAST(merchant_transactions.datetime As Date) < '".$y_to."-".$m_to."-".$d_to."'";

相关内容

  • 没有找到相关文章

最新更新