1
我有一個MySQL表像這個 -Laravel查詢生成器 - 錯誤使用NOW()和日期格式
而且Laravel像這 -
$baseQuery = DB::table('webinars')
->select(
'id',
'title',
'description',
'hosts',
DB::raw('concat(DATE_FORMAT(starts_on,"%d %b %Y %h:%i %p), " ", timezone) as starts'),
'duration',
'created_at'
)
->where('user_id', '=', $user_ID)
->where('starts_on >= NOW()');
所以一個查詢生成器,我收到錯誤此2線 -
DB::raw('concat(DATE_FORMAT(starts_on,"%d %b %Y %h:%i %p), " ", timezone) as starts')
而且
->where('starts_on >= NOW()');
錯誤是 -
誰能幫助我嗎?
我undrstand,謝謝 –