-2

What is the way to copy MS SQL server table tdata to the same structural table in MS SQL server from C# application

1 Answers1

-1
insert into [TargetTable] from select * from [SourceTable]
Mohammad Nikravesh
  • 947
  • 1
  • 8
  • 27