0
4.2kviews
What are fundamental relational algebra operations?
1 Answer
written 2.5 years ago by |
1] Select. (σ)
2] Project. (π)
3] Set intersection. (n)
4] Natural join.
1] Select (σ) - It is used to specify any condition on relation.
syntax
σ condition (R)
condition is executed on relation R.
σ sal>1000 (customer)
when this query is executed all customers whose salary is more …