Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Laravel 5 Inner Join und Gruppieren nach Abfragesyntaxfehler

Sie haben zusätzliche Start-[ in dieser Zeile:-

->where([['DATE(shipping_table.sold_date)', '=',$date, ['shipping_table.shipping_status', '=' ,1]])

Es muss sein (verwenden Sie DB::raw() um mysql functions zu verwenden ):-

$date = date("Y-m-d", strtotime($request->datepicker2));

$products =  DB::table('shipping_table')
->select('products.product_name', 'products.price', DB::raw("Sum(shipping_products.quantity) as qtysold"), 'shipping_table.sold_date')
->join('shipping_products','shipping_table.shipping_id', '=', 'shipping_products.shipping_id')
->join('products','products.product_id', '=', 'shipping_products.product_id')
->where([[DB::raw("date(shipping_table.sold_date)"),$date], ['shipping_table.shipping_status', '=' ,1]])
->groupBy('products.product_name')
->paginate(8);

Hinweis:-

In Bezug auf den Fehler, den Sie erhalten (Syntax error or access violation: 1055 ) überprüfen Sie diese Antwort und gehen Sie entsprechend vor:-

aravel :Syntaxfehler oder Zugriffsverletzung:1055-Fehler