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

jaredzhou/duckdb

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

Folders and files

NameName
Last commit message
Last commit date
Jul 7, 2022
Jul 6, 2022
Jun 14, 2022
Jun 18, 2022
Jul 10, 2022
May 17, 2021
Jul 10, 2022
Jul 10, 2022
Jul 10, 2022
Jul 10, 2022
Jul 10, 2022
Feb 3, 2021
Jan 3, 2022
Jun 6, 2022
Mar 14, 2022
May 24, 2022
Jun 15, 2022
Aug 18, 2021
Jul 28, 2021
Jul 6, 2022
Mar 26, 2019
May 10, 2022
Aug 3, 2018
Nov 11, 2019
Nov 7, 2019
Jan 19, 2022
Jun 15, 2022
May 24, 2022

Repository files navigation

 

Github Actions Badge CodeFactor codecov discord

DuckDB

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 supports arbitrary and nested correlated subqueries, window functions, collations, complex types (arrays, structs), and more. For more information on the goals of DuckDB, please refer to the Why DuckDB page on our website.

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 detail of benchmarks is in our Benchmark Guide.

Please also refer to our Contribution Guide.

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++ 88.5%
  • C 5.5%
  • Python 1.8%
  • JavaScript 1.8%
  • Julia 0.7%
  • Java 0.6%
  • Other 1.1%