Nuestros mejores programadores agotaron sus provisiones de café, en su búsqueda todo el tiempo por la resolución, hasta que Elena halló el arreglo en Beanstalk y en este momento la comparte contigo.
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;
Aquí puedes ver las comentarios y valoraciones de los usuarios
Eres capaz de añadir valor a nuestro contenido participando con tu experiencia en las aclaraciones.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)