2016-08-05 79 views

回答

1
$days = 10; 

DB::table('on_search') 
    ->whereRaw('search_date < NOW() - INTERVAL ? DAY', [$days]) 
    ->delete(); 
0

你也可以在php中用Carbon類做日期操作。

// Top of file. 
use Carbon\Carbon; 

DB::table('table_name)->where('search_date', '<', Carbon::now()->subDay(10)); 
相關問題