Laravel Select with Sum Query Example
In this post we will give you information about Laravel Select with Sum Query Example. Hear we will give you detail about Laravel Select with Sum Query ExampleAnd how to use it also give you demo for it if it is necessary.
We mostly required to get sum of amount, salary etc in laravel. We can also get sum of column using mysql SUM(). We have two way to get sum of column value. first we can use laravel sum() of query builder and another one we can use with directly with select statement using DB::raw(). I give you both example you can see and use any one as perfect for you.
Example 1:
$data = DB::table("click")->sum('numberofclick');
print_r($data);
Example 2:
$data = DB::table("click")
->select(DB::raw("SUM(numberofclick) as count"))
->orderBy("created_at")
->groupBy(DB::raw("year(created_at)"))
->get();
print_r($data);
Hope this code and post will helped you for implement Laravel Select with Sum Query Example. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs