.............statement is used to add one or more records to a database .
Answers
Answered by
4
Answer:insert
Explanation:
Answered by
3
Answer:
INSERT statement is used to add one or more records to a database.
Explanation:
The INSERT INTO statement is used to insert new records in a table.
The INSERT statement allows you to insert one or more rows into a table. The following illustrates the syntax of the INSERT statement:
mySQL---> INSERT INTO table(c1,c2,...)
VALUES (v1,v2,...);
Similar questions