|< < 43 > >|

The select statement

select/from/where in terms of relational algebra

select c1, ..., cn from T where P

is equivalent to:
project( select(T, P), [c1, ..., cn])

|< < 43 > >|