56. Consider the following schemas:
Branch = (Branch_name, Assets, Branch_city)
Customer = (Customer-name, Bank-name,Customer-city)
Borrow = (Branch-name, loan-number, customer-name,
Balance)
Deposit = (Branch-name, Account-number,
Customer-name, Balance)
Using relational Algebra, the query that finds
customers who have balance
More than 10,000 is ________
(A)
πcustomer-name(σbalance > 10000(Deposit))
(B) σcustomer-name(σbalance >
10000(Deposit))
(C) πcustomer-name(σbalance
> 10000(Borrow))
(D)σcustomer-name(σbalance
> 10000(Deposit))
ANS-(A)
Description is coming soon--
No comments:
Post a Comment