0
1.8kviews
Relational Algebra operations
1 Answer
0
22views

Basic operators:

1) Select (6)

  • Used to select the rows from relation based on condition.

  • Consider a relation as:

emp(Id, Name, email, age)

  • eg

age>(emp)20

  • Generalized syntax is

condition(R)

  • Above example displays all rows satisfying the condition.

2) Project (2)

  • Used to display only required attributes from a relation.

  • Generalized …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.