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 CREATE VIEW command to see what query was used to create the specified view.
SHOW CREATE VIEW
SHOW CREATE VIEW view_name;
CREATE VIEW v1 AS SELECT id FROM taxi_trips; SHOW CREATE VIEW v1;
Name | Create Sql -----------+--------------------------------------------- public.v1 | CREATE VIEW v1 AS SELECT id FROM taxi_trips (1 row)
Was this page helpful?