1
我Database
大型唱片如何寫Chunk
在此查詢如何獲取大塊查詢器可以通過Laravel
$users = DB::table('products')->orderBy($sortbysql, $sortbysqltype)
-> where('product_name', 'like', '%' . $keyword . '%')
-> where('product_status', '=','1')
-> paginate($view);
$querylistbrand = DB::table('products')->select('product_brand_name', DB::raw('count(*) as total'))
-> where('product_name', 'like', '%' . $keyword . '%')
-> where('product_status', '=','1')
-> groupBy('product_brand_name')`enter code here`
-> orderBy('total', 'desc')->take(25)->get();
如果你只是想分頁或採取(25)你不需要塊 – Paras