What is "sql-insert"

INSERT is the ANSI standard SQL command to insert records into the database.

Its default syntax is:

INSERT INTO tabela (campo1, campo2) VALUES (valor1, valor2);

Can be used in conjunction with the SELECT command:

INSERT INTO tabela (campo1, campo2) SELECT campoA, campoB FROM outraTabela;