SQL Einfügen Werte in die Tabelle ein
INSERT INTO table2
SELECT * FROM table1
WHERE condition;
Envious Echidna
INSERT INTO table2
SELECT * FROM table1
WHERE condition;
INSERT INTO Customers(customer_id, first_name, last_name, age, country)
VALUES
(5, 'Harry', 'Potter', 31, 'USA');