The SELECT statement
is required. The SELECT statement specifies which DBMS columns in
an access descriptor to include in a view descriptor.
SELECT statements are
cumulative within a view creation. That is, if you submit the following
SELECT statements, columns 1, 5, and 6 are selected:
select 1;
select 5 6;
To clear your current
selections when creating a view descriptor, use the
RESET
ALL
statement.