show-materialized-views.md 1.2 KB


title: "SHOW MATERIALIZED VIEWS" description: "SHOW MATERIALIZED VIEWS returns a list of materialized views being maintained in Materialize." menu: main:

parent: commands

SHOW MATERIALIZED VIEWS returns a list of materialized views being maintained in Materialize.

Syntax

SHOW MATERIALIZED VIEWS [ FROM <schema_name> ] [ IN <cluster_name> ]

Examples

SHOW MATERIALIZED VIEWS;
     name     | cluster
--------------+----------
 winning_bids | quickstart
SHOW MATERIALIZED VIEWS LIKE '%bid%';
     name     | cluster
--------------+----------
 winning_bids | quickstart

Related pages

Option Description
FROM If specified, only show materialized views from the specified schema. Defaults to first resolvable schema in the search path. For available schemas, see SHOW SCHEMAS.
IN If specified, only show materialized views from the specified cluster.