Is it possible to copy data from column A to column B for all records in a table in SQL?
How about this
UPDATE table SET columnB = columnA;
This will update every row.
2.1m questions
2.1m answers
60 comments
57.0k users