Answers for "How to copy data from one column to another column in the same table in SQL"

SQL
2

copy all values of a column to another column in sql in same table

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 "How to copy data from one column to another column in the same table in SQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language