Copying data to a table from another table in a different database

2012-09-06


1
2
3
4
5
6
7
8
9
10
insert into [DatabaseA].dbo.TableA
(
 
Country_Code,
Country_Name
select 
Country_Code,
Country_Name
from [DatabaseB].dbo.TableB

0 comments: