--- layout: docu railroad: statements/load_and_install.js title: LOAD / INSTALL Statements --- ## `INSTALL` The `INSTALL` statement downloads an extension so it can be loaded into a DuckDB session. ### Examples Install the [`httpfs`]({% link docs/1.3/core_extensions/httpfs/overview.md %}) extension: ```sql INSTALL httpfs; ``` Install the [`h3` community extension]({% link community_extensions/extensions/h3.md %}): ```sql INSTALL h3 FROM community; ``` ### Syntax
## `LOAD` The `LOAD` statement loads an installed DuckDB extension into the current session. ### Examples Load the [`httpfs`]({% link docs/1.3/core_extensions/httpfs/overview.md %}) extension: ```sql LOAD httpfs; ``` Load the [`spatial`]({% link docs/1.3/core_extensions/spatial/overview.md %}) extension: ```sql LOAD spatial; ``` ### Syntax