Homework 06¶
约 243 个字 32 行代码 1 张图片 预计阅读时间 2 分钟
5.6¶
Consider the bank database of Figure 5.21. Let us define a view branch_cust as follows:
Suppose that the view is materialized; that is, the view is computed and stored.
Write triggers to maintain the view, that is, to keep it up-to-date on insertions to depositor or account. It is not necessary to handle deletions or updates.
Note that, for simplicity, we have not required elimination of duplicates.
5.15¶
Consider an employee database with two relations:
employee(employee_name, street, city)
works(employee_name,company_name, salary)where the primary keys are underlined. Write a function avg_salary that takes a company name as an argument and finds the average salary of employees at that company. Then, write an SQL statement, using that function, to find companies whose employees earn a higher salary, on average, than the average salary at "First Bank."
5.19¶
Suppose there are two relations r and s, such that the foreign key B of r references the primary key A of s. Describe how the trigger mechanism can be used to implement the on delete cascade option when a tuple is deleted from s.
当一个元组从 s 中被删除后,触发器会被激活,触发器会删除所有在 r 中引用了这个元组的元组。这样就实现了级联删除的效果