← Back to Glossary

DuckDB

DuckDB is an embeddable SQL database management system designed for analytical workloads.

DuckDB is an embeddable SQL database management system designed for analytical workloads. It operates as an in-process library, similar to SQLite, but optimized for OLAP (Online Analytical Processing) rather than OLTP (Online Transaction Processing). DuckDB excels at quickly processing large amounts of data, making it ideal for data analysis tasks. It supports a wide range of data sources, including CSV, JSON, and Parquet files, as well as integration with popular data science tools like pandas DataFrames. DuckDB can be easily embedded in applications or used standalone, offering high-performance querying capabilities without the need for a separate database server. Its columnar storage engine and vectorized query execution enable efficient handling of complex analytical queries, making it a powerful tool for data analysts and engineers working with local datasets or prototyping data pipelines.

Example DuckDB SQL query:

Related terms