Back
Is it possible to copy data from column A to column B for all records in a table in SQL?
Use this code:
UPDATE table SET columnB = columnA;
This will be useful to update every row.
31k questions
32.8k answers
501 comments
693 users