Answer:
The natural join operation forms a Cartesian product of its two arguments, performs a selection forcing equality on those attributes that appear in both relation schemas, and finally removes duplicate attributes.
For example
π customer-name, loan.loan-number, amount ( σ borrower.loan-number = loan.loan-number (borrower ⨉ loan))
The natural join operation forms a Cartesian product of its two arguments, performs a selection forcing equality on those attributes that appear in both relation schemas, and finally removes duplicate attributes.
For example
π customer-name, loan.loan-number, amount ( σ borrower.loan-number = loan.loan-number (borrower ⨉ loan))
You may be interested in:
Advanced Database Management System MCQs