Employee - Department Constraints Exercise
Employee - Department Database
Given the following relations:
- Write down some reasonable constraints given the data shown.
- Given your constraints, which of the following are permissible? If an operation is not permissible, why is it not?
- Update
Salary
forJohn Smith
to"100K"
. - Update
Bdate
forJennifer Wallace
toFebruary 29, 1980
. - Update
SSN
forAhmad Jabbar
to123456789
. - Update
Dno
forAlicia Zelaya
to2
. - Insert into
DEPT_LOCATIONS
the tuple<3, "Marietta">
. - Update
Super_ssn
forJames Borg
to8675309
. - Update
Super_ssn
forJohn Smith
toNULL
. - Delete the
Research
depatment from theDEPARTMENT
relation.