-
What is the table name in the following?
INSERT INTO Employee VALUES('Rahul','M',NULL);
-
- M
- Rahul
- VALUES
- Employee
- None of these
Correct Option: D
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.