how to convert join in my sql query to laravel ORM
-
I'm new in laravel 5 how can i convert this query to laravel ORM select `users`.`id`, `users`.`username`, count(`ord`.`id`) As total FROM `users` LEFT JOIN `orders` AS `ord` ON `ord`.`empolyee_id` = `users`.`id` AND DATE(`ord`.`created_at`) = $date GROUP BY `users`.`id` I tried this solution but it didn't work correctly $orders = Order::rightjoin('users',function($join) use($date){ $join->on('users.id', '=','orders.empolyee_id'); $join->on("DATE(created_at)", '=', $date); }) ->select(DB::raw('count(orders.id) as total, users.username')) ->groupBy('users.id')->get()
-
Answer:
Given you select only username and total, you probably want an array instead of eloquent results, that's why lists at the end. If you still want the collection of models, then use get instead. $users = User::leftJoin('orders as o', function($join) use ($date) { $join->on('users.id', '=', 'o.empolyee_id') ->where(DB::raw('DATE(o.created_at)'), '=', $date); }) ->selectRaw('count(o.id) as total, users.username') ->groupBy('users.id') ->lists('total', 'username')
Ahmed el-Gendy at Stack Overflow Visit the source
Related Q & A:
- How can I optimize this dynamic SQL query in oracle with PL/SQL?Best solution by docs.oracle.com
- How to convert sql query to Hibernate Criteria query?Best solution by Stack Overflow
- How to convert my SQL query to MS Access query?Best solution by Stack Overflow
- How to convert a SQL query into hibernate criteria?Best solution by Stack Overflow
- How to convert SQL query to LINQ query?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.