Sql – How to copy data from one column to another in the same table

sql

Is it possible to copy data from column A to column B for all records in a table in SQL?

Best Answer

How about this

UPDATE table SET columnB = columnA;

This will update every row.