winget install --id=DuckDB.cli -e
DuckDB is a high-performance analytical database system. It is designed to be fast, reliable and easy to use. DuckDB provides a rich SQL dialect, with support far beyond basic SQL.
DuckDB CLI is a high-performance analytical database system designed for fast, reliable, and efficient data analysis. It is built to handle complex queries with ease, offering a robust SQL dialect that extends far beyond basic functionality. DuckDB supports advanced features such as nested correlated subqueries, window functions, collations, and complex data types like arrays, structs, and maps.
Key Features:
Audience & Benefit:
Ideal for data analysts, engineers, and researchers who need a powerful tool for querying and analyzing datasets. DuckDB CLI provides fast results and supports complex operations, enabling users to perform deep analysis efficiently without the need for extensive infrastructure setup.
DuckDB CLI can be installed via winget, ensuring seamless integration into your workflow.
<img src="logo/DuckDB_Logo-horizontal.svg" height="100" />
DuckDB is a high-performance analytical database system. It is designed to be fast, reliable, portable, and easy to use. DuckDB provides a rich SQL dialect, with support far beyond basic SQL. DuckDB supports arbitrary and nested correlated subqueries, window functions, collations, complex types (arrays, structs, maps), and several extensions designed to make SQL easier to use.
DuckDB is available as a standalone CLI application and has clients for Python, R, Java, Wasm, etc., with deep integrations with packages such as pandas and dplyr.
For more information on using DuckDB, please refer to the DuckDB documentation.
If you want to install DuckDB, please see our installation page for instructions.
For CSV files and Parquet files, data import is as simple as referencing the file in the FROM clause:
SELECT * FROM 'myfile.csv';
SELECT * FROM 'myfile.parquet';
Refer to our Data Import section for more information.
The documentation contains a SQL introduction and reference.
For development, DuckDB requires CMake, Python3 and a C++11
compliant compiler. Run make
in the root directory to compile the sources. For development, use to build a non-optimized debug version. You should run and to verify that your version works properly after making changes. To test performance, you can run and then perform several standard benchmarks from the root directory by executing . The details of benchmarks are in our .
make debug
make unit
make allunit
BUILD_BENCHMARK=1 BUILD_TPCH=1 make
./build/release/benchmark/benchmark_runner
Please also refer to our Build Guide and Contribution Guide.
See the Support Options page.