Mar 5, 2004 #1 Cap2010 Programmer Mar 29, 2000 196 CA hi, I want to update one field from other table how do to do this in SQL Server 2000 and Oracle ? Cap2010
hi, I want to update one field from other table how do to do this in SQL Server 2000 and Oracle ? Cap2010
Mar 5, 2004 #2 Dave29Palms Instructor Sep 12, 2003 3 US Hi Cap2010, Your question is a bit vague. Could you elaborate? Dave29Palms Upvote 0 Downvote
Mar 6, 2004 #3 swampBoogie Programmer Jan 6, 2003 1,660 SE Code: update t set c = (select c from p where ... ) where ... Upvote 0 Downvote
Mar 8, 2004 #4 grega Programmer Feb 2, 2000 932 GB Or Code: update a set a.field = b.field from a, b where a.key = b.key Greg. Upvote 0 Downvote