2018年12月23日 星期日

Laravel的一些技巧 - Eloquent(一)

//使用whereIn取得學校列表,函式先取(資料庫欄位的'id', 再取學校陣列)
//School物件是use App\School這個Model

$schools = School::whereIn('id', $select_school)->get();
//DB::table的寫法//$schools = DB::table('schools')->whereIn('id', $select_school)->get();

來源:stackoverflow-How to Make Laravel Eloquent “IN” Query?

沒有留言:

張貼留言