Home » MYSQL » MySQL Database Operations » Question
  1. What is the table name in the following?
    INSERT INTO Employee VALUES('Rahul','M',NULL);
    1. M
    2. Rahul
    3. VALUES
    4. Employee
    5. 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.



Your comments will be displayed only after manual approval.