Este dilema se puede abordar de diversas formas, pero nosotros te dejamos la que para nosotros es la respuesta más completa.
Ejemplo 1: copiar datos de una base de datos a otra
Copy CodeSelect *into DestinationDB.dbo.tableName from SourceDB.dbo.SourceTable
Ejemplo 2: copiar datos de una base de datos a otra
Let’s assume that, we have our employee table.
We have to copy this datainto another table.For this purpose,
we can use the INSERTINTOSELECT
operator. Before we go ahead anddo that,
we would have tocreate another
table that would have the same structure
as the given table.
• Firstcreate the secondtablewith
the same table structure with copied one.
• Thenuse the syntax:
Let’s say employee_duplicate is New table
employee isFirsttable that we want to copy it into new tableINSERTINTO employee_duplicate SELECT*FROM employee;
Finalizando este artículo puedes encontrar las explicaciones de otros usuarios, tú asimismo tienes la libertad de dejar el tuyo si dominas el tema.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)