日期格式转换在Kohana查询构建器中返回“null”

时间:2018-02-22 06:00:32

标签: php mysql kohana query-builder kohana-orm

使用kohana查询构建器更改已取消的日期格式,但它返回为空值。

查询

$result = DB::select('log_id',array(DB::expr("DATE_FORMAT('cancelled_date', '%Y-%m-%d %h:%i %p')"),'cancelled_date'),'drop_location')
    ->from(TBL_NAME)
    ->where('driver_id','=','15')
    ->execute()->as_array();

1 个答案:

答案 0 :(得分:0)

删除“cancelled_date”的单引号及其正常工作。

$result = DB::select('log_id',array(DB::expr("DATE_FORMAT(cancelled_date, '%Y-%m-%d %h:%i %p')"),'cancelled_date'),'drop_location')
->from(TBL_NAME)
->where('driver_id','=','15')
->execute()->as_array();