insert values from one table to another code example
Example 1: insert a select statement into a table
--format
INSERT INTO Customers (CustomerName, City, Country)
SELECT SupplierName, City, Country FROM Suppliers;
--examples
INSERT INTO Customers (CustomerName, City, Country)
SELECT SupplierName, City, Country FROM Suppliers;
Example 2: create table and insert values from another table
CREATE TABLE new_table AS
SELECT *
FROM old_table;