Sql copiar datos de una tabla a otra

Ejemplos de código

5
0

insertar seleccionar

INSERT IGNORE INTO table2
SELECT * FROM table1
WHERE condition;
4
0

insertar una instrucción select en una tabla

--format
INSERT IGNORE INTO Customers (CustomerName, City, Country)
SELECT SupplierName, City, Country FROM Suppliers;

--examples
INSERT IGNORE INTO Customers (CustomerName, City, Country)
SELECT SupplierName, City, Country FROM Suppliers;
2
0

copiar datos de una tabla a otra en sql

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 IGNORE 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 IGNORE INTO employee_duplicate SELECT * FROM employee;

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................