Luego de de nuestra larga selección de información resolvimos este disgusto que pueden tener algunos de nuestros usuarios. Te ofrecemos la solución y esperamos serte de mucha apoyo.
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;
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)