macromedia.coldfusion.database_access
[Top] [All Lists]

Re: Update table 1 with data from Table 2?

Subject: Re: Update table 1 with data from Table 2?
From: "paross1" <webforumsuser@xxxxxxxxxxxxxx>
Date: Tue, 29 Jul 2008 15:21:13 +0000 (UTC)
Newsgroups: macromedia.coldfusion.database_access

How about something like this?

 UPDATE newtable n
 INNER JOIN oldtable o ON o.PhysicalLocationID = n.old_location_ID
 SET n.vendor_address1 = o.Street1,
 n.vendor_address2 = o.Street2,
 n.vendor_city = o.City,
 n.vendor_state = o.StateID,
 n.vendor_zip = o.Zip,
 n.vendor_zip4 = o.Zip4,
 n.vendor_tele = o.Phone,
 n.vendor_fax = o.Fax

 Phil


<Prev in Thread] Current Thread [Next in Thread>