Homework 04¶
约 292 个字 55 行代码 预计阅读时间 2 分钟
3.10¶
Consider the relational database of Figure 3.19. Give an expression in SQL for each of the following :
a. Modify the database so that the employee whose ID is '12345' now lives in “Newtown"
b. Give each manager of "First Bank Corporation" a 10 percent raise unless the salary becomes greater than $100000; in such cases, give only a 3 percent raise.
employee (ID, person_name, street, city)
works (ID, company_name, salary)
company (company_name, city)
manages (ID, manager_id)
(a)
(b)
3.11¶
Write the following queries in SQL, using the university schema.
a. Find the ID and name of each student who has taken at least one Comp. Sci. course; make sure there are no duplicate names in the result.
b. Find the ID and name of each student who has not taken any course offered before 2017.
c. For each department, find the maximum salary of instructors in that department. You may assume that every department has at least one instructor.
d. Find the lowest, across all departments, of the per-department maximum salary computed by the preceding query.
(a)
(b)
©
(d)
3.15¶
Consider the bank database of Figure 3.18, where the primary keys are underlined. Construct the following SQL queries for this relational database.
a. Find each customer who has an account at every branch located in "Brooklyn".
b. Find the total sum of all loan amounts in the bank.
c. Find the names of all branches that have assets greater than those of at least one branch located in "Brooklyn"
branch(branch name, branch_city, assets)
customer(ID, customer_name, customer_street, customer_city)
loan(loan_number, branch name, amount)
borrower(ID, loan number)
account(account_number, branch_name, balance)
depositor(ID, account_number)
(a)
(b)
©