InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a relational algebra function?(a) Select(b) Project(c) Manipulate(d) Union |
|
Answer» Right choice is (c) Manipulate Explanation: There does not exist any operation named as manipulate operation in relational algebra. The union gives the union of two sets. Project is similar to select in SQL and select is similar to where in SQL. |
|