What is the difference between Select and Project Operations

前端 未结 10 657
深忆病人
深忆病人 2020-12-23 20:42

I\'m referring to the basic relational algebra operators here.
As I see it, everything that can be done with project can be done with select.

I don\'t know if

10条回答
  •  [愿得一人]
    2020-12-23 21:16

    Project is not a statement. It is the capability of the select statement. Select statement has three capabilities. They are selection,projection,join. Selection-it retrieves the rows that are satisfied by the given query. Projection-it chooses the columns that are satisfied by the given query. Join-it joins the two or more tables

提交回复
热议问题