edited by
1,026 views
2 votes
2 votes

Consider the following schemas:

Branch_Schema = (branch_name, assets, city)

Customer_Schema = (customer_name, street, city)

Deposit_Schema = (branch_name, account_number, customer_name, balance)

Borrow_Schema = (branch_name, loan_number, customer_name, amount)

Which of the following tuple relational calculus finds all customers who have loan amount more than Rs. 12, 0000?

  1. {t(customer_name) $\mid$ t $\in$ borrow[?] t[amount] > 12000 }
  2. {t $\mid$ t(customer_name) $\mid$ t $\in$ borrow[?] t[amount] > 12000 }
  3. { t $\mid$ [?] $\in$ borrow (t(customer_name)=s(customer_name))[?][amount]>12000}
  4. { t $\mid$ [?] $\in$ borrow(t(customer_name)[?] s[amount] > 12000}
edited by

Please log in or register to answer this question.

Answer:

Related questions

1 votes
1 votes
2 answers
1
2 votes
2 votes
1 answer
2
go_editor asked Jul 24, 2016
2,182 views
Match the following $:$$\begin{array}{} \text{(a)} & \text{Create} & \text{(i)} & \text{The ER model} \\ \text{(b)} & \text{Select} & \text{(ii)} & \text{Relationship m...
2 votes
2 votes
1 answer
4