how to copy data of a table from another database to table of anaother database
Select * into DestinationDB.dbo.tableName from SourceDB.dbo.SourceTable
how to copy data of a table from another database to table of anaother database
Select * into DestinationDB.dbo.tableName from SourceDB.dbo.SourceTable
migrate sql table another database
INSERT INTO dbo.YourTableNameHere
SELECT *
FROM [SourceServer].[SourceDatabase].dbo.YourTableNameHere
copy data from one database to another
Copy CodeSelect * into DestinationDB.dbo.tableName from SourceDB.dbo.SourceTable
copy data from one database to another
Let’s assume that, we have our employee table.
We have to copy this data
into another table. For this purpose,
we can use the INSERT INTO SELECT
operator. Before we go ahead and do that,
we would have to create another
table that would have the same structure
as the given table.
• First create the second table with
the same table structure with copied one.
• Then use the syntax:
Let’s say employee_duplicate is New table
employee is First table that we want to copy it into new table
INSERT INTO employee_duplicate SELECT * FROM employee;
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us