--- title: "SHOW VIEWS" description: "`SHOW VIEWS` returns a list of views in Materialize." menu: main: parent: commands --- `SHOW VIEWS` returns a list of views in Materialize. ## Syntax ```mzsql SHOW VIEWS [FROM ] ``` Option | Description ------------------------|------------ **FROM** | If specified, only show views from the specified schema. Defaults to first resolvable schema in the search path. For available schemas, see [`SHOW SCHEMAS`](../show-schemas). ## Details ### Output format for `SHOW VIEWS` `SHOW VIEWS`'s output is a table, with this structure: ```nofmt name ------- ... ``` Field | Meaning ------|-------- **name** | The name of the view. ## Examples ```mzsql SHOW VIEWS; ``` ```nofmt name --------- my_view ``` ## Related pages - [`SHOW CREATE VIEW`](../show-create-view) - [`CREATE VIEW`](../create-view)