SHOW VIEWS

SHOW VIEWS returns a list of views in Materialize.

Syntax

SHOW VIEWS [FROM <schema_name>]
Option Description
FROM <schema_name> If specified, only show views from the specified schema. Defaults to first resolvable schema in the search path. For available schemas, see SHOW SCHEMAS.

Details

Output format for SHOW VIEWS

SHOW VIEWS’s output is a table, with this structure:

 name
-------
 ...
Field Meaning
name The name of the view.

Examples

SHOW VIEWS;
  name
---------
 my_view
Back to top ↑