Reader small image

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product typeBook
Published inApr 2024
PublisherPackt
ISBN-139781836205678
Edition1st Edition
Right arrow
Author (1)
Jamie Chan
Jamie Chan
author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan

Right arrow

Updating Data

 

Next, let’s look at how we can update our data. To do that, we use the syntax below:

 

UPDATE table_name

SET column1 = value1, column2 = value2, …

WHERE condition;

 

For instance, suppose we want to update the contact number of 'James Lee' from '516-514-6568' to '516-514-1729', we use the code

 

UPDATE employees

SET contact_number = '516-514-1729'

WHERE id = 1;

 

Here, we use the id column to identify 'James Lee'. We can also use other columns. For instance, we can write

 

WHERE years_in_company = 11

 

since there is only one employee with that number of years in the company.

 

However, if there is more than one employee with the same number of years, we’ll end up updating the contact numbers of all such employees, which is not what we want.

 

In addition, if we omit the WHERE clause, we’ll end up updating the contact numbers...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Learn SQL using MySQL in One Day and Learn It Well
Published in: Apr 2024Publisher: PacktISBN-13: 9781836205678

Author (1)

author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan