Search Shortcut cmd + k | ctrl + k
Search cmd+k ctrl+k
Dark Mode
1.1 (stable)
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;

Syntax