Write syntax to insert rows in a table?
Answers
Answered by
0
Answer:
To add one or more rows into a table, you use the INSERT statement. The following illustrates the most basic form of the INSERT statement: INSERT INTO table_name (column_list) VALUES (value_list);
Similar questions