SQL Insertar valores en la tabla
INSERT INTO table2
SELECT * FROM table1
WHERE condition;
Envious Echidna
INSERT INTO table2
SELECT * FROM table1
WHERE condition;
insert into cd.facilities values (9, 'Spa', 20, 30, 100000, 800);
INSERT INTO Customers(customer_id, first_name, last_name, age, country)
VALUES
(5, 'Harry', 'Potter', 31, 'USA');