(i) (a)
The attribute designated as the PRIMARY KEY should be EMPNO.
This is because EMPNO (Employee Number) provides unique identification for each employee,
guaranteeing the uniqueness of each record within the table.
Unlike NAME, which permits repetition, EMPNO requires uniqueness.
OR
(i) (b)
To prevent the NAME attribute from being empty,
implement the NOT NULL constraint.
This permits duplicate names but disallows NULL values.
Example: NAME VARCHAR(50) NOT NULL.
(ii) (a)
ALTER TABLE EMPLOYEES MODIFY BASICSAL DECIMAL(7,2);
This command modifies the data type of BASICSAL to accommodate
a maximum of 7 digits, with 2 digits reserved for decimal places, supporting values up to 99999.99.
OR
(ii) (b)
DROP TABLE EMPLOYEES;
This SQL command permanently deletes the entire EMPLOYEES table
and all its associated data.