Homework 05¶
约 269 个字 37 行代码 预计阅读时间 2 分钟
4.7¶
Consider the employee database of Figure 4.12. Give an SQL DDL definition of this database. Identify referential-integrity constraints that should hold, and include them in the DDL definition.
employee (ID, person_name, street, city)
works (ID, company_name, salary)
company (company_name, city)
manages (ID, manager_id)
4.9¶
SQL allows a foreign-key dependency to refer to the same relation, as in the following example:
Here, employee_id is a key to the table manager, meaning that each employee has at at most one manager. The foreign-key clause requires that every manager also be an employee. Explain exactly what happens when a tuple in the relation manager is deleted.
当删除 manager 当中的一个元组后,这个 manager 的直系下属对应的元组会被删除,这样会造成链式反应,导致 manager 的二级下属对应的元组被删除,最后和这个 manager 下级的所有 employee 相关的元组都会被删除
4.12¶
Suppose a user wants to grant select access on a relation to another user. Why should the user include (or not include) the clause granted by current role in the grant statement?
如果这次授予权限是基于当前角色,那么当当前角色被删除或者改动时,权限也会仍旧生效,这样可以保证权限的稳定性