Home » MYSQL » Create Tables » Question
  1. Will this query produce any error?
    INSERT INTO Employee
    (Emp_id, fname,lname)
    VALUES (101,’Sujit’,'Gupta'),
    VALUES (102,’Ajit’,’Gupta’);
    /* where person_id is a primary key */
    1. No Error
    2. Error
    3. Depends
    4. All of above
    5. None of these
Correct Option: A

No Error



Your comments will be displayed only after manual approval.