Pages

Wednesday, April 16, 2014

SQL SERVER – UPDATE From SELECT Statement – Using JOIN in UPDATE Statement – Multiple Tables in Update Statement

This is one of the most interesting questions I keep on getting on this email and I find that not everyone knows about it. In recent times I have seen a developer writing a cursor to update a table. When asked the reason was he had no idea how to use multiple tables with the help of the JOIN clause in the UPDATE statement.
Let us see the following example. We have two tables Table 1 and Table 2.
-- Create table1CREATE TABLE Table1 (Col1 INTCol2 INTCol3 VARCHAR(100))INSERT INTO Table1 (Col1Col2Col3)SELECT 111'First'UNION ALLSELECT 1112'Second'UNION ALLSELECT 2113'Third'UNION ALLSELECT 3114'Fourth'GO-- Create table2CREATE TABLE Table2 (Col1 INTCol2 INTCol3 VARCHAR(100))INSERT INTO Table2 (Col1Col2Col3)SELECT 121'Two-One'UNION ALLSELECT 1122'Two-Two'UNION ALLSELECT 2123'Two-Three'UNION ALLSELECT 3124'Two-Four'GO
Now let us check the content in the table.
SELECT *FROM Table1SELECT *FROM Table2
GO
Now let us see the following image. Our requirement is that we have Table2 which has two rows where Col1 is 21 and 31. We want to update the value from Table2 to Table1 for the rows where Col1 is 21 and 31. Additionally, we want to update the values of Col2 and Col3 only.
When you look at this it looks very simple but when we try to think the solution, I have seen developers coming up with many different solutions for example sometime they write cursor, table variables, local variables etc. However, the easiest and the most clean way is to use JOIN clause in the UPDATE statement and use multiple tables in the UPDATE statement and do the task.
UPDATE Table1SET Col2 t2.Col2,Col3 t2.Col3FROM Table1 t1INNER JOIN Table2 t2 ON t1.Col1 t2.Col1WHERE t1.Col1 IN (2131)GO
Now let us select the data from these tables.
-- Check the content of the tableSELECT *FROM Table1SELECT *FROM Table2
GO
As you can see that using JOIN clause in UPDATE statement it makes it very easy to update data in one table from another table. You can additionally use MERGE statement to do the same as well, however I personally prefer this method. Let us clean up the clause by dropping the tables which we have created.
DROP TABLE Table1DROP TABLE Table2
GO
Do let me know if you use any other trick in similar situations. If you do, I would like to learn more about it.

No comments:

Post a Comment