Respuesta :

Answer:

a. INSERT INTO

Explanation:

INSERT INTO is used to insert new record in the table.

syntax:- INSERT INTO table name(column1,cloumn2,cloum3)

            values(value1,value2,value3);

if adding values for all the columns then

INSERT INTO table name

VALUES (value1,value2,value3,value4);

Keep in mind that the order of the values is same as the column.