Example of unionAll in Query Builder Laravel
Sometimes you need to bind multimple query then you can use unionAll in laravel. If you use union all then laravel query builder provide unionAll method for mysql union. when you are doing big project or ERP level project then mostly you require to use union for getting data from database with multiple table. In Following example you can see how to use union all in Laravel 5.
Example:
$silver = DB::table("product_silver")
->select("product_silver.name"
,"product_silver.price"
,"product_silver.quantity");
$gold = DB::table("product_gold")
->select("product_gold.name"
,"product_gold.price"
,"product_gold.quantity")
->unionAll($silver)
->get();
print_r($gold);
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Use DB Raw Query in Laravel?
- Laravel E-Signature using Docusign API Tutorial
- Laravel Login with Mobile Number OTP Tutorial
- Laravel Login and Registration using Ajax Tutorial
- Laravel Profile Image Upload Tutorial with Example
- How to Add Extra Field in Registration Form in Laravel?
- Laravel TCPDF: Generate HTML to PDF File Example
- Laravel Group By with Max Value Query Example
- Laravel Eloquent Order By Query Example
- How to use Union Query with Laravel Eloquent?
- How to Execute MySQL Query in Laravel?
- Laravel Query Builder Where Exists Example