The Data Management Center

SQL UPDATE


David Haertzen David Haertzen, Tutorial Author
Check out our
Data Warehousing Tutorial.

HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX | Bookmark and Share
infogoal.com HOME
SQL OVERVIEW

SQL BASICS
SQL SELECT
SQL WHERE
SQL INSERT
SQL UPDATE
SQL DELETE

SQL ADMINISTRATION
SQL CREATE DATABASE
SQL DROP DATABASE
SQL CREATE TABLE
SQL ALTER TABLE
SQL DROP TABLE
SQL CREATE INDEX
SQL DROP INDEX
SQL ADD FOREIGN KEY
SQL DROP FOREIGN KEY
SQL CREATE VIEW
SQL DROP VIEW

SQL ADVANCED
SQL CONCAT
SQL SUBSTRING
SQL TRIM
SQL AND & OR
SQL IN
SQL BETWEEN
SQL LIKE
SQL DISTINCT
SQL GROUP BY
SQL AGGREGATE
SQL HAVING
SQL ORDER BY
SQL JOIN
SQL OUTER JOIN

SQL SYNTAX
SQL BOOKREVIEWS

Previous | Next

SQL > SQL Basics > SQL UPDATE Statement


What is the SQL UPDATE Statement?

The SQL UPDATE statement is the SQL command that makes changes to data that exists in a SQL database.

Why Use the SQL UPDATE Statement?

Anytime you want to change information in a SQL database use the SQL UPDATE statement to cause the change.

How To Use the SQL UPDATE Statement

The SQL Update command is used as follows.

SQL UPDATE Statement Syntax

 
UPDATE <table_name>
SET <column_name> = <column_value>
WHERE <where_conditions>
 

SQL UPDATE Statement Example 1

The following example updates the product_name to 'SQL Tool UltraLight' where product_nbr equals '1001'.

Before executing the UPDATE the table contains:

product_nbrproduct_name
1001 SQL Tool Light
1002 SQL Tool Professional
1003 SQL Tool Enterprise

 
UPDATE product
SET product_name = 'SQL Tool UltraLight'
WHERE product_nbr = '1001'
 

After executing the UPDATE the table contains:

product_nbrproduct_name
1001 SQL Tool Light
1002 SQL Tool Professional
1003 SQL Tool Enterprise

HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX
Copyright© 1999-2012, First Place Software, Inc.