LOAD / INSTALL Statements
INSTALL
The INSTALL statement downloads an extension so it can be loaded into a DuckDB session.
Examples
Install the httpfs extension:
INSTALL httpfs;Install the h3 community extension:
INSTALL h3 FROM community;Syntax
LOAD
The LOAD statement loads an installed DuckDB extension into the current session.
Examples
Load the httpfs extension:
LOAD httpfs;Load the spatial extension:
LOAD spatial;