Skip to content
forked from duckdb/duckdb

DuckDB is an in-process SQL OLAP Database Management System

License

Notifications You must be signed in to change notification settings

rommelDB/duckdb

This branch is 13087 commits behind duckdb/duckdb:main.

Folders and files

NameName
Last commit message
Last commit date
May 22, 2024
May 14, 2024
May 17, 2024
May 13, 2024
May 21, 2024
Mar 26, 2024
May 21, 2024
May 22, 2024
May 22, 2024
May 21, 2024
May 21, 2024
Jul 25, 2023
Apr 11, 2024
Dec 20, 2022
Aug 21, 2023
Sep 5, 2023
Apr 11, 2024
May 14, 2024
Jul 28, 2021
May 19, 2024
Jul 13, 2023
Apr 30, 2024
Aug 3, 2018
Nov 11, 2019
Nov 7, 2019
Jan 2, 2024
Apr 30, 2024
Mar 26, 2024

Repository files navigation

DuckDB logo

Github Actions Badge discord Latest Release

DuckDB

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), and more. For more information on using DuckDB, please refer to the DuckDB documentation.

Installation

If you want to install and use DuckDB, please see our website for installation and usage instructions.

Data Import

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.

SQL Reference

The website contains a reference of functions and SQL constructs available in DuckDB.

Development

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 make debug to build a non-optimized debug version. You should run make unit and make allunit to verify that your version works properly after making changes. To test performance, you can run BUILD_BENCHMARK=1 BUILD_TPCH=1 make and then perform several standard benchmarks from the root directory by executing ./build/release/benchmark/benchmark_runner. The details of benchmarks are in our Benchmark Guide.

Please also refer to our Build Guide and Contribution Guide.

Support

See the Support Options page.

About

DuckDB is an in-process SQL OLAP Database Management System

Resources

License

Code of conduct

Citation

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 87.7%
  • C 5.2%
  • Python 5.0%
  • Swift 0.8%
  • Julia 0.7%
  • CMake 0.5%
  • Other 0.1%