BSQL Assignment 201
BSQL Assignment 201
Problem Description:
In the database design for the Employee Management System of FSOFT Company,
given tables of the application with below:
EMPLOYEE:
SKILL:
Q1:
Q2:
1. Add an Email field to EMPLOYEE table and make sure that the database will
not allow the value for Email to be inserted into a new row if that value has
already been used in another row.
2. Modify EMPLOYEE table to set default values to 0 of MgrNo and Status
fields.
Q3:
1. Add the FOREIGN KEY constrain of DeptNo field to the EMPLOYEE table
that will relate the DEPARTMENT table.
2. Remove the Description field from the EMP_SKILL table.
Q4: