InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between Select and Project command? |
|
Answer» Select: THE SELECT operation is used for selecting a subset with tuples according to a given condition. Select filters out all tuples that do not satisfy C. Project: The projection eliminates all attributes of the input relation but those mentioned in the projection list. The projection method defines a relation that contains a vertical subset of Relation. |
|