0

I have table(mytable1) like-

Code Nombre 14 [:de]David[:en]Michel[:es]John[:] ... ....... ... ........ 

I have another table(mytable2) like-

Code Post_title 

I want to copy data of column Nombre of mytable1 to Post_title column of mytable2.

1

1 Answer 1

1
UPDATE mytable2 LEFT JOIN mytable1 ON mytable1.code=mytable2.code SET mytable2.post_title = mytable1.nombre 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.