About 1,010,000 results
Open links in new tab
  1. How can I do an UPDATE statement with JOIN in SQL Server?

    This was an example, but the point is as Eric said in How can I do an UPDATE statement with JOIN in SQL Server?. You need to add an UPDATE statement at first with the full address of …

  2. SQL UPDATE WHERE IN (List) or UPDATE each individually?

    Oct 19, 2015 · UPDATE table1 SET somecolumn = 'someVal' WHERE ID IN (SELECT ID FROM @definedTable); In the above, @definedTable is a SQL 'User Defined Table Type', where the …

  3. SQL - Update multiple records in one query - Stack Overflow

    I have table - config. Schema: config_name | config_value And I would like to update multiple records in one query. I try like that: UPDATE config SET t1.config_value = 'value' , t2.config_va...

  4. sql server - Update multiple columns in SQL - Stack Overflow

    Jan 31, 2012 · 262 Is there a way to update multiple columns in SQL server the same way an insert statement is used? Something like:

  5. if condition in sql server update query - Stack Overflow

    May 21, 2017 · I have a SQL server table in which there are 2 columns that I want to update either of their values according to a flag sent to the stored procedure along with the new value, …

  6. How to update large table with millions of rows in SQL Server?

    Mar 10, 2016 · It has that been deprecated since SQL Server 2005 was released (11 years ago): Using SET ROWCOUNT will not affect DELETE, INSERT, and UPDATE statements in a …

  7. Update query using Subquery in Sql Server - Stack Overflow

    Update query using Subquery in Sql Server Asked 12 years, 10 months ago Modified 5 years, 10 months ago Viewed 440k times

  8. SQL Update from One Table to Another Based on a ID Match

    Oct 22, 2008 · Just a note on this solution, UPDATE...FROM is proprietary therefore, if you cannot use the MERGE statement because you are using SQL 2005 or earlier, this is an ANSI …

  9. Return number of rows affected by UPDATE statements

    Jul 9, 2014 · How can I get the number of rows affected by an UPDATE query in a Stored Procedure (SQL Server 2005), as a resultset. e.g. CREATE PROCEDURE UpdateTables AS …

  10. sql server - Update statement to update multiple rows - Stack …

    13 You can make a temporary table or a table variable containing the updates you want to do, then run the UPDATE statement linking the table to the table you intend to update. Note that …