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();