I want to copy data from one column to another column of other table. How can I do that?
I tried the following:
Update tblindiantime Set CountryName
Here the query:
Same Table:
UPDATE table_name SET column1 = column2
Different Table:
UPDATE table_name1 SET column1 = ( SELECT column2 FROM table_name2 WHERE table_name1.id = table_name2.id );