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