Give the syntax for "insert " statement. With one example.
Answers
Answered by
1
Answer:
It is possible to write the INSERT INTO statement in two ways.
The first way specifies both the column names and the values to be inserted:
Example:
INSERT INTO table_name (column1, column2, column3, ...)
VALUES (value1, value2, value3, ...);
Similar questions