How to copy data from one column to another column in the same table in SQL code example
Example: copy all values of a column to another column in sql in same table
UPDATE table SET columnB = columnA;
UPDATE table SET columnB = columnA;