Home » MYSQL » Mysql Setup » Question
  1. Identify the table name in the following statement.
    INSERT INTO Employee VALUES('Ajit','M',NULL);
    1. Ajit
    2. M
    3. Employee
    4. Values
    5. 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.



Your comments will be displayed only after manual approval.