All methods to UPDATE data in a MySQL database using Laravel

A comprehensive guide on how to update data in a MySQL database using Laravel, covering both Eloquent ORM and Query Builder methods.

In this article, you will explore different methods to update data in a MySQL database using Laravel. We will examine both Eloquent ORM and Query Builder to efficiently and flexibly perform data update operations.

Using Eloquent ORM to update data:

Example 1: Updating a single record using Eloquent

use App\Models\Student;

// Find the record to update
$student = Student::find(1);

// Update data
$student->name = 'Jane Doe';
$student->age = 22;
$student->save();

Using Query Builder to update data:

Example 2: Updating multiple records using Query Builder

use Illuminate\Support\Facades\DB;

// Update data using Query Builder
DB::table('students')
    ->where('id', 1)
    ->update(['name' => 'Jane Doe', 'age' => 22]);

Updating multiple records with multiple conditions:

Example 3: Updating multiple records with conditions

DB::table('students')
    ->where('age', '>', 20)
    ->update(['status' => 'active']);

Updating with Prepared Statements:

Example 4: Using Prepared Statements

$studentId = 1;
$name = 'Jane Doe';

DB::table('students')
    ->where('id', $studentId)
    ->update(['name' => $name]);

System Requirements:

  • Laravel 8.x or 9.x
  • MySQL

How to install Laravel:

To install Laravel, you can use Composer:

composer create-project --prefer-dist laravel/laravel your-project-name

Tips:

  • Use Eloquent ORM for more complex database operations as it allows you to work with objects easily.
  • Carefully check conditions when updating to avoid unintended data updates.
  • Always validate data before updating to ensure data integrity.


Related

Read Excel Content Using Laravel

A detailed guide on reading Excel file content in Laravel using the Laravel Excel package. This article provides sample code, a step-by-step explanation, and instructions for installing the necessary package.
Guide to integrating VNPAY in Laravel with a Sandbox account

A detailed guide on how to integrate VNPAY into a Laravel project using VNPAY's Sandbox account to process online payments, including configuration, payment URL creation, handling callback responses, and creating the interface.
Generating Captcha in Laravel

A detailed guide on how to create a Captcha in Laravel to protect forms from spam and verify user authenticity. This tutorial will help you integrate Captcha into your Laravel project with ease.
How to use nested Where functions in Laravel

This article summarizes the ways to use nested `where` functions in Laravel, helping readers understand how to construct complex queries in their applications.
How to implement Google login in Laravel

A detailed guide on how to integrate Google login functionality in Laravel using the Laravel Socialite package. This article will guide you through setting up Google API and configuring it in Laravel.
Guide to implementing Apple ID login in Laravel

A detailed guide on how to integrate Apple ID login into a Laravel application using OAuth2. Learn how to configure your application to connect with Apple services and handle user login via Apple ID.
How to use the where function in Laravel

A detailed guide on using the `where` function in Laravel to perform effective and flexible database queries.
How to implement Facebook login in Laravel

A step-by-step guide on how to integrate Facebook login into a Laravel application using the Socialite library. The article covers Facebook OAuth configuration and how to handle the login process in Laravel.
How to upload multiple images in Laravel

A detailed guide on how to upload multiple images in Laravel, including setting up the upload form, processing data on the server, and storing images.
How to convert a Markdown string to HTML using Laravel

A guide on how to convert a Markdown string to HTML in Laravel using the `league/commonmark` library, making the conversion process simple and effective.

main.add_cart_success