P粉6511093972023-08-01 16:21:09
嘗試將兩個列合併為一個條件。
$now = Carbon::now(); MyModel::whereRaw("CONCAT(`date`, ' ', `time`) >= ?", [$now->toDateTimeString()])->get();
對於 SQL Server,請嘗試下列操作。
MyModel::whereRaw("CONVERT(datetime, date + ' ' + CONVERT(varchar, time, 121)) >= ?", [$now->toDateTimeString()])->get();#