SQL SET 关键字

SET

SET 命令与 UPDATE 一起使用,以指定表中应更新的列和值。

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

实例
  1. UPDATE Customers
  2. SET ContactName = 'Alfred Schmidt', City= 'Frankfurt'
  3. WHERE CustomerID = 1;

以下 SQL 将更新国家 “Mexico” 的所有记录的 "ContactName" 字段为 "Juan" :

实例
  1. UPDATE Customers
  2. SET ContactName='Juan'
  3. WHERE Country='Mexico';
注意:更新表中的记录时要小心!注意 UPDATE 语句中的 WHERE 子句。WHERE 子句指定应该更新哪些记录。如果省略 WHERE 子句,表中的所有记录都将更新!

分类导航