Yes, it is possible:

UPDATE TABLE2 SET (Field1, Field2, Field3)
        SELECT UpdaterField1, UpdaterField2, UpdaterField3 FROM TABLE1
WHERE SomeField LIKE 'Something'
WHERE SomeField LIKE 'Something'


That should work. Manual tells you more in Update section.


Niklas

-----Original Message-----
From: m0sh3 [mailto:[EMAIL PROTECTED]] 
Sent: 2. marraskuuta 2001 13:15
To: [EMAIL PROTECTED]
Subject: [PHP-DB] UPDATE table1 FROM table2


In MySQL 3.23, how to update one table using information from another
table.

update table1 set value1=t2.value2
from table1 as t inner join table2 as t1 using(pk_key) ???

or

update table1 as t1 inner join table2 as t2 using(pk_key)
set t1.value1=t2.value2 ???

Is it possible at all?

Thank you



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to