SELECT (search or analytics) on disk. They require a local on-disk database path.
CREATE
REFRESH
SHOW
DROP
DESCRIBE
DESCRIBE view_name reports row count and notes that the object is a materialized view.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
CREATE, REFRESH, SHOW, DROP
SELECT (search or analytics) on disk. They require a local on-disk database path.
CREATE MATERIALIZED VIEW top_tags AS
SELECT tag, COUNT(*) FROM articles GROUP BY tag
REFRESH MATERIALIZED VIEW top_tags
SHOW MATERIALIZED VIEWS
DROP MATERIALIZED VIEW top_tags
DESCRIBE view_name reports row count and notes that the object is a materialized view.