About 4,980,000 results
Open links in new tab
  1. 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.

  2. SQL UPDATE Statement - W3Schools

    The SQL UPDATE Statement The UPDATE statement is used to update or modify one or more records in a table. UPDATE Syntax

  3. SQL UPDATE Statement - W3Schools

    Learn how to use the SQL UPDATE statement to update database records efficiently. Understand its syntax, usage, and best practices with examples.

  4. SQL UPDATE - W3Schools

    UPDATE The UPDATE command is used to update existing rows in a table. The following SQL statement updates the first customer (CustomerID = 1) with a new contact person and a new city.

  5. SQL query update table – SQL Tutorial

    An UPDATE statement in SQL Server is used to modify existing records in a table. You can update specific columns of a table with new values based on certain conditions. Here is the general syntax …

  6. SQL Server UPDATE Statement

    In this tutorial, you will learn how to use the SQL Server UPDATE statement to change existing data in a table.

  7. How to Update Records in Table from CTE in SQL - GeeksforGeeks

    Jul 23, 2025 · In this article, we will learn how to use CTEs to update records in SQL along with examples along with an explanation. What is Common Table Expression (CTE )? A CTE (Common …

  8. SQL Server: Update data in a Table using UPDATE Statement

    SQL Server supports the standard SQL to update the data in the table. Use the UPDATE TABLE statement to update records in the table in SQL Server.

  9. What Is the UPDATE Statement in SQL? - LearnSQL.com

    Aug 10, 2021 · Use the SQL UPDATE statement to modify existing data in a database table. Find some practical examples of how to update one or more rows with SQL.

  10. Getting started with the SQL UPDATE syntax

    Dec 22, 2021 · This article will help you understand the SQL UPDATE syntax used in SQL Server to modify or update existing data in tables or views.