MCQOPTIONS
Saved Bookmarks
| 1. |
Find the error?CREATE TABLE Employee( Employee_id SMALLINT, name VARCHAR, LAST VARCHAR CONSTRAINTS pk_Employee PRIMARY KEY (Employee_id)); INSERT INTO Employee VALUES( Employee_id, name, LAST) (1, s , p ); INSERT INTO person ( Employee_id, name, LAST) VALUES(1, s , p ); |
| A. | Error, Duplicate value |
| B. | Any other error |
| C. | No error |
| D. | All of above |
| E. | None of these |
| Answer» B. Any other error | |