I've got a query:

SELECT a.id, b.products_id,a.zenid 
FROM titles a, ANOTHERDATABASE.products_description b
WHERE b.products_name = a.title 

It gives

id  products_id     zenid
57  3193        0
81  2037        0

What i really need is to update zendid with products_id so it becomes:

id  products_id     zenid
57  3193        3193
81  2037        2037
link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

This is how you are updating a table using a join in MySQL:

UPDATE titles a
  INNER JOIN ANOTHERDATABASE.products_description b
    ON b.products_name = a.title
SET a.zenid = b.products_id
link|improve this answer
Thanks. yours works! – cybertai Aug 25 '11 at 5:49
feedback
update a
set a.zenid=b.products_id
from titles a inner join ANOTHERDATABASE.products_description b 
on b.products_name = a.title  
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.