234k views
4 votes
It is a command used to add individual records in a table.

Select one:

a. INSERT, INTO

b. UPDATE, SET

c. ADD, INTO

d. APPEND, INTO

User Baywet
by
5.9k points

1 Answer

6 votes

Answer:

a. INSERT INTO

Step-by-step 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.

User Alexander Yanyshin
by
6.1k points