-1

I added new column (DATE TIME) on my table and I put the same record on one column to the new column i recently added.

How can I copy all records from Column1 to Column2 of the same table?

ChocoMartin
  • 111
  • 1
  • 3
  • 12

1 Answers1

2

do update

update table_name
set Column2=Column1
Zaynul Abadin Tuhin
  • 31,407
  • 5
  • 33
  • 63