Copy data from one table to another in different database
INSERT INTO DestinationDB..MyDestinationTable
SELECT * FROM SourceDB..MySourceTable
Copy data from one table to another in same database
select * into DestinationTablename from SourceTablename
INSERT INTO DestinationDB..MyDestinationTable
SELECT * FROM SourceDB..MySourceTable
Copy data from one table to another in same database
select * into DestinationTablename from SourceTablename
No comments:
Post a Comment