Today i want to write a query to automatically copy the value of one cell to another in different tables comparing the equality of ids...
so i have x_content1 table with id1 column and title1 column, i need to copy title1 column into x_content2 table title2 column comparing id1 with id2
UPDATE x_content2
SET x_content2.title2 = x_content1.title1
WHERE x_content1.id1 = x_content2.id2
Please, help! =)
 
    