bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL SET Keyword

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind SQL SET Keyword?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ Customers
3Order

Put the learning moves in the order that makes the concept easiest to apply.

The following SQL will update the "ContactName" field to "Juan" for all records where Country is "Mexico":
The following SQL updates the first customer (CustomerID = 1) with a new ContactName and a new City:
The SET command is used with UPDATE to specify which columns and values that should be updated in a table.

Set

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

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 SELECT TOP, LIMIT and ROWNUM Keywords

Next

SQL TABLE Keyword