bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL SET Keyword

Concept visual

SQL SET Keyword

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

SET Keyword

Previous

❮ SQL Keywords

Next

Set

The SET

command is used with UPDATE to specify which columns and values that should be updated in a table.

Formula

The following SQL updates the first customer (CustomerID = 1) with a new ContactName and a new City:

Example

UPDATE Customers

SET ContactName = 'Alfred Schmidt', City= 'Frankfurt'

WHERE CustomerID = 1;
The following SQL will update the "ContactName" field to "Juan" for all records where Country is "Mexico":

Example

UPDATE Customers

SET ContactName='Juan'

WHERE Country='Mexico';

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!

Previous

❮ SQL Keywords

Next

Previous

SQL SELECT TOP, LIMIT and ROWNUM Keywords

Next

SQL TABLE Keyword