If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Microsoft SQL Server > SQL Update Join

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-07-12, 11:00
fvcdata2011 fvcdata2011 is offline
Registered User
 
Join Date: Jan 2012
Posts: 1
Post SQL Update Join

have any one know SQL Update Join training material with live example. Pls help us..
Reply With Quote
  #2 (permalink)  
Old 01-07-12, 12:16
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,280
This is the general form.
Code:
UPDATE U
SET U.AColumn = OtherTable.AnOtherColumn
FROM TableToUpdate AS U
   INNER JOIN OtherTable On
      U.YetAnotherColumn = OtherTable.YetAnotherColumn 
   INNER JOIN ATotallyDifferentTable On
      OtherTable.NutherColumn = ATotallyDifferentTable.NutherColumn
WHERE ATotallyDifferentTable.SomeColumn NOT IN ('Yea', 'Nay', 'Dunno')
I find it a good habit to give the table that will be updated the alias name "U", to distinguish it from the other tables.

Basically you write the JOINS (INNER, LEFT OUTER, ...) and WHERE clause like you would for any SELECT statement. In the SET part, you can assign a literal value to the update column (like U.IsActive = 'N') , or any column from one of the JOINed tables (U.AColumn = OtherTable.AnOtherColumn).

If the article you mentioned, you will find a similar example under the header "SQL Update Join".
__________________
With kind regards . . . . . SQL Server 2000/2005/2008/2008 R2 Earned beers: 16
Wim
Beware of bugs in the above code; I have only proved it correct, not tried it. -- Donald Knuth
Grabel's Law: 2 is not equal to 3 -- not even for very large values of 2.
Pat Phelan's Law: 2 very definitely CAN equal 3 -- in at least two programming languages
Reply With Quote
Reply

Tags
sql join, sql update, sql update join

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On