1.

Find out the logical error in the following query?
CREATE TABLE Employee
( Emp_id VARCHAR(50),
Emp_Name VARCHAR (50),
Emp_Address VARCHAR (50),
Emp_Mobile_no SMALLINT
);

A. Primary key is missing
B. Lesser number of columns
C. Incorrect definition
D. All of above
E. None of these
Answer» B. Lesser number of columns


Discussion

No Comment Found