-
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
);
-
- Primary key is missing
- Lesser number of columns
- Incorrect definition
- All of above
- None of these
Correct Option: A
Primary key is an essential attribute for each table declared in Mysql.