Answers for "can we copy one data of sql to another"

SQL
2

sql query to copy data from one column to another

UPDATE table SET columnB = columnA;
Posted by: Guest on January-04-2021
0

sql query to copy data from one column to another

UPDATE table_name SET
    destination_column_name=orig_column_name
WHERE condition_if_necessary
Posted by: Guest on June-10-2021

Code answers related to "can we copy one data of sql to another"

Code answers related to "SQL"

Browse Popular Code Answers by Language