Use this tag for questions concerning INSERT, the SQL command which inserts data into a table using a SELECT query. Questions should also be tagged [sql] and, where applicable, tagged with the database engine in use.
This tag is used for questions dealing with the SQL INSERT
command, where the data is inserted into a table using a SELECT
query as shown below:
INSERT INTO <table name>
SELECT <column names>
FROM <source table>
.....