Views
DDL - Views
A view is a virtual table based on the result set of a SQL statement. It derives its fields from a SELECT
statement. You can do anything with a OmniSci view query that you can do in a non-view OmniSci query.
Nomenclature Constraints
View object names must use the NAME format, described in regex notation as:
CREATE VIEW
CREATE VIEW
Creates a view based on a SQL statement.
Example
You can describe the view as you would a table.
You can query the view as you would a table.
DROP VIEW
DROP VIEW
Removes a view created by the CREATE VIEW statement. The view definition is removed from the database schema, but no actual data in the underlying base tables is modified.
Example
Last updated
Was this helpful?