约 34,900 个结果
在新选项卡中打开链接
  1. SQL UPDATE Statement - W3Schools

    UPDATE Table The following SQL updates the record with CustomerID = 1, with a new contact person AND a new city.

  2. SQL UPDATE Statement

    In this tutorial, you will learn how to use the SQL UPDATE statement to modify one or more rows in a table.

  3. UPDATE (Transact-SQL) - SQL Server | Microsoft Learn

    2025年11月18日 · Support for use of the READUNCOMMITTED and NOLOCK hints in the FROM clause that apply to the target table of an UPDATE or DELETE statement will be removed in a future …

  4. SQL UPDATE Statement - GeeksforGeeks

    2026年2月9日 · Both columns are updated simultaneously in a single SQL statement. Note: For updating multiple columns we have used comma (,) to separate the names and values of two …

  5. SQL UPDATE Examples

    2022年8月29日 · In this article, we look at how to use the SQL UPDATE statement along with several examples and a way to not accidentally update the wrong data.

  6. SQL UPDATE Statement: Syntax, Examples, and Safe Patterns (2026 ...

    2025年8月23日 · Learn SQL UPDATE syntax with practical examples, WHERE safety checks, JOIN-based updates, and transaction-safe patterns for MySQL, PostgreSQL, and SQL Server.

  7. UpdateSQL Tutorial

    The SQL UPDATE statement is used to modify existing records in a table. It allows you to change the values of one or more columns in one or more rows of a table based on specified conditions.

  8. SQL UPDATE Statement - Online Tutorials Library

    The UPDATE statement in SQL can also use a subquery to update values in one table based on data from another table. A subquery is a nested query that provides a value or set of values for the main …

  9. How to Use UPDATE in SQL: A Comprehensive Guide for Beginners

    2023年9月24日 · When it comes to managing databases, SQL is a powerful tool that I’m confident you’ll find indispensable. One of the key commands in SQL is the UPDATE statement. It’s what we use …

  10. SQL UPDATE (With Examples) - Programiz

    In SQL, the UPDATE statement is used to modify existing records in a database table. In this tutorial, we'll learn about the UPDATE Statement in SQL with examples.