InterviewSolution
Saved Bookmarks
| 1. |
Write the steps to create a table in sql with create command and insert two rows in it. |
|
Answer» acc. to me - There are two basic SYNTAXES of the INSERT INTO statement which are shown below. INSERT INTO TABLE_NAME (column1, COLUMN2, column3,...columnN) VALUES (value1, value2, value3,...valueN); Here, column1, column2, column3,...columnN are the NAMES of the columns in the table into which you want to insert the data. |
|