- Documentation
- Specification
- Introduction
- Data Types
- Queries
- Tables
- DuckDB Extension
- Introduction
- Usage
- Maintenance
- Advanced Features
- FAQ
Documentation
/ DuckDB Extension
/ Advanced Features
Views
Views can be created using the standard CREATE VIEW
syntax.
The views are stored in the metadata, in the ducklake_view
table.
Examples
Create a view.
CREATE VIEW v1 AS SELECT * FROM tbl;