1,071 views
1 votes
1 votes
Consider the bank database, where the primary keys are underlined.
Construct the following SQL queries for this relational database.
a. Find all customers who have an account at all the branches located in
“Brooklyn”.
b. Find out 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”.

here is the database

branch(branch name, branch city, assets)
customer (customer name, customer street, customer city)
loan (loan number, branch name, amount)
borrower (customer name, loan number)
account (account number, branch name, balance )
depositor (customer name, account number)

Please log in or register to answer this question.

Related questions