Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use the SHOW VIEW command to list existing views in a particular schema.
SHOW VIEW
SHOW VIEWS [ FROM schema_name ] [ LIKE_expression ];
t3
public
v3
CREATE TABLE IF NOT EXISTS t3 ( v1 int, v2 int, v3 int) WITH (appendonly = 'true'); CREATE VIEW v3 AS SELECT sum(v2) AS sum_v2 FROM t3;
SHOW VIEWS
SHOW VIEWS FROM public;
Was this page helpful?