0% found this document useful (0 votes)
25 views

Update

Uploaded by

subashreenata
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

Update

Uploaded by

subashreenata
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

Search field


Log inSign Up Get Certified Spaces Set Goal
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C+
+ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PAND
AS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI G
O KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA
SCIENCE

SQL Tutorial
SQL HOMESQL IntroSQL SyntaxSQL SelectSQL Select DistinctSQL WhereSQL Order
BySQL AndSQL OrSQL NotSQL Insert IntoSQL Null ValuesSQL UpdateSQL DeleteSQL
Select TopSQL Aggregate FunctionsSQL Min and MaxSQL CountSQL SumSQL AvgSQL
LikeSQL WildcardsSQL InSQL BetweenSQL AliasesSQL JoinsSQL Inner JoinSQL Left
JoinSQL Right JoinSQL Full JoinSQL Self JoinSQL UnionSQL Group BySQL HavingSQL
ExistsSQL Any, AllSQL Select IntoSQL Insert Into SelectSQL CaseSQL Null FunctionsSQL
Stored ProceduresSQL CommentsSQL Operators

SQL Database
SQL Create DBSQL Drop DBSQL Backup DBSQL Create TableSQL Drop TableSQL Alter
TableSQL ConstraintsSQL Not NullSQL UniqueSQL Primary KeySQL Foreign KeySQL
CheckSQL DefaultSQL IndexSQL Auto IncrementSQL DatesSQL ViewsSQL InjectionSQL
HostingSQL Data Types

SQL References
SQL KeywordsMySQL FunctionsSQL Server FunctionsMS Access FunctionsSQL Quick Ref

SQL Examples
SQL ExamplesSQL EditorSQL QuizSQL ExercisesSQL ServerSQL BootcampSQL Certificate

SQL UPDATE Statement


❮ PreviousNext ❯

The SQL UPDATE Statement


The UPDATE statement is used to modify the existing records in a table.
UPDATE Syntax
UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;

Note: Be careful when updating records in a table! Notice the WHERE clause in
the UPDATE statement. The WHERE clause specifies which record(s) that should
be updated. If you omit the WHERE clause, all records in the table will be
updated!

Demo Database
Below is a selection from the Customers table used in the examples:

CustomerID CustomerName ContactName Address City P

1 Alfreds Futterkiste Maria Anders Obere Str. 57 Berlin 1

2 Ana Trujillo Emparedados Ana Trujillo Avda. de la México 0


y helados Constitución 2222 D.F.

3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México 0


D.F.

4 Around the Horn Thomas Hardy 120 Hanover Sq. London W

5 Berglunds snabbköp Christina Berguvsvägen 8 Luleå S


Berglund
UPDATE Table
The following SQL statement updates the first customer (CustomerID = 1)
with a new contact person and a new city.

ExampleGet your own SQL Server


UPDATE Customers
SET ContactName = 'Alfred Schmidt', City= 'Frankfurt'
WHERE CustomerID = 1;

The selection from the "Customers" table will now look like this:

CustomerI CustomerName ContactName Address City P


D

1 Alfreds Futterkiste Alfred Schmidt Obere Str. 57 Frankfurt 1

2 Ana Trujillo Emparedados Ana Trujillo Avda. de la México 0


y helados Constitución 2222 D.F.

3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México 0


D.F.

4 Around the Horn Thomas Hardy 120 Hanover Sq. London W

5 Berglunds snabbköp Christina Berguvsvägen 8 Luleå S


Berglund
UPDATE Multiple Records
It is the WHERE clause that determines how many records will be updated.

The following SQL statement will update the ContactName to "Juan" for all
records where country is "Mexico":

Example
UPDATE Customers
SET ContactName='Juan'
WHERE Country='Mexico';

The selection from the "Customers" table will now look like this:

CustomerI CustomerName ContactName Address City P


D

1 Alfreds Futterkiste Alfred Schmidt Obere Str. 57 Frankfurt 1

2 Ana Trujillo Emparedados Juan Avda. de la México 0


y helados Constitución 2222 D.F.

3 Antonio Moreno Taquería Juan Mataderos 2312 México 0


D.F.

4 Around the Horn Thomas Hardy 120 Hanover Sq. London W

5 Berglunds snabbköp Christina Berguvsvägen 8 Luleå S


Berglund
Update Warning!
Be careful when updating records. If you omit the WHERE clause, ALL records
will be updated!

Example
UPDATE Customers
SET ContactName='Juan';

The selection from the "Customers" table will now look like this:

CustomerI CustomerName ContactNam Address City P


D e

1 Alfreds Futterkiste Juan Obere Str. 57 Frankfurt 1

2 Ana Trujillo Emparedados y Juan Avda. de la México 0


helados Constitución 2222 D.F.

3 Antonio Moreno Taquería Juan Mataderos 2312 México 0


D.F.

4 Around the Horn Juan 120 Hanover Sq. London W

5 Berglunds snabbköp Juan Berguvsvägen 8 Luleå S

Test Yourself With Exercises


Exercise:
Update the City column of all records in
the Customers table.

Customers
City = 'Oslo';

Submit Answer »

Start the Exercise

❮ PreviousNext ❯

W3schools Pathfinder
Track your progress - it's free!
Log inSign Up

COLOR PICKER

SPACES
UPGRADE
AD-FREE
NEWSLETTER
GET CERTIFIED
CONTACT US

Top Tutorials

HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial

Top References

HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
Java Reference
Angular Reference
jQuery Reference

Top Examples

HTML Examples
CSS Examples
JavaScript Examples
How To Examples
SQL Examples
Python Examples
W3.CSS Examples
Bootstrap Examples
PHP Examples
Java Examples
XML Examples
jQuery Examples

Get Certified

HTML Certificate
CSS Certificate
JavaScript Certificate
Front End Certificate
SQL Certificate
Python Certificate
PHP Certificate
jQuery Certificate
Java Certificate
C++ Certificate
C# Certificate
XML Certificate
 FORUM ABOUT CLASSROOM
W3Schools is optimized for learning and training. Examples might be simplified to improve reading
and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we
cannot warrant full correctness of all content. While using W3Schools, you agree to have read and
accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.

You might also like