-
Identify the table name in the following statement.
INSERT INTO Employee VALUES('Ajit','M',NULL);
-
- Ajit
- M
- Employee
- Values
- None of these
Correct Option: C
The ‘INSERT INTO’ clause here inserts a row in the table named ‘student’. The table has three fields. The first field or attribute value in the row/tuple is ‘Kyle’. The second attribute value is ‘M’ and the last attribute is set to NULL.