0
1.8kviews
Relational Algebra operations
1 Answer
written 2.5 years ago by |
Basic operators:
1) Select (6)
Used to select the rows from relation based on condition.
Consider a relation as:
emp(Id, Name, email, age)
age>(emp)20
condition(R)
2) Project (2)
Used to display only required attributes from a relation.
Generalized …