-
Will this query produce any error?
INSERT INTO Employee
(Emp_id, fname,lname)
VALUES (101,’Sujit’,’Gupta’),
VALUES (101,’Ajit’,’Gupta’);
/* where person_id is a primary key */
-
- Depends
- Error
- No Error
- All of above
- None of these
Correct Option: B
Emp_id declared as a primary key therefore it never contain same value.