Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in SQL by (20.3k points)

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

1 Answer

0 votes
by (40.7k points)

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

Browse Categories

...