Select from following answers:- INSERT INTO Annotations (AnnotationText, Date) VALUES (@text, @date)

- INSERT INTO Annotations (@text, @date) VALUES (AnnotationID, AnnotationText, Date)
- INSERT INTO Annotations (AnnotationID, AnnotationText, Date) VALUES (@text, @date)
- All Above
The INSERT statement adds one or more new rows to a table. In a simplified treatment, INSERT has the following form:
INSERT [INTO] table_or_view [(column_list)] data_values
The INSERT statement inserts data_values as one or more rows into the specified table or view. The column_list is a list of column names, separated by commas, that can be used to specify the columns for which data is supplied. If column_list is not specified, all the columns in the table or view receive data.
Show Correct Answer
Source: MeasureUp.Com | |
Alert Moderator