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.
1.4m articles
1.4m replys
5 comments
57.0k users