Saved Bookmarks
| 1. |
Give the syntax for "insert " statement. With one example. |
|
Answer» 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, ...); |
|