About 103,000 results
Open links in new tab
  1. SQL UPDATE Statement - W3Schools

    The SQL UPDATE Statement The UPDATE statement is used to modify the existing records in a table. UPDATE Syntax UPDATE table_name SET column1 = value1, column2 = value2, ... WHERE condition;

  2. SQL UPDATE Examples

    Aug 29, 2022 · 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.

  3. SQL UPDATE Statement - GeeksforGeeks

    4 days ago · SET: The column (s) you want to update and their new values. WHERE: Filters the specific rows you want to update. Note: The SET keyword assigns new values to columns, while the WHERE …

  4. SQL UPDATE Statement Explained with Examples - DbSchema

    Aug 23, 2025 · Can I update multiple columns in a single UPDATE statement? Yes, you can update multiple columns in a single UPDATE statement by separating the column-value pairs with commas …

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

    Changes existing data in a table or view in SQL Server. For examples, see Examples. Transact-SQL syntax conventions. UPDATE . [ TOP ( expression ) [ PERCENT ] ] . { { table_alias | <object> | …

  6. SQL Server UPDATE Statement

    First, specify the name of the table you want to update data after the UPDATE keyword. Second, specify a list of columns c1, c2, …, cn and new values v1, v2, … vn in the SET clause. Third, filter the rows …

  7. SQL: UPDATE Statement - TechOnTheNet

    This SQL tutorial explains how to use the SQL UPDATE statement with syntax, examples and practice exercises. Notice that there are 3 ways to write a SQL UPDATE statement.

  8. SQL query update table – SQL Tutorial

    Here is the general syntax of the UPDATE query: SET column1 = value1, column2 = value2, ... UPDATE table_name: Specifies the table you want to update. SET: Indicates the columns to be …

  9. SQL UPDATE Statement - Tutorial Republic

    Syntax The UPDATE statement is used to update existing data in a table. UPDATE table_name SET column1_name = value1, column2_name = value2,... WHERE condition; Here, column1_name, …

  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.