SQLite Code Factory online Help
Prev | Return to chapter overview | Next |
CREATE VIEW
sql-command ::= |
CREATE VIEW view-name AS select-statement |
The CREATE VIEW command assigns a name to a pre-packaged SELECT statement. Once the view is created, it can be used in the FROM clause of another SELECT in place of a table name.
You cannot COPY, INSERT or UPDATE a view. Views are read-only.
Prev | Return to chapter overview | Next |