0
4.2kviews
What are fundamental relational algebra operations?
1 Answer
0
52views

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 …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.