DuckDB CLI
DuckDB is an embeddable SQL OLAP database management system.
It is designed to handle analytical workloads with high performance on modern hardware.
DuckDB is based on a columnar storage model, designed for vectorized query execution, and has fully ACID-compliant
transactions.
Quick Start:
- Launch the DuckDB CLI:
duckdb
- Check the version:
select version();
- Read a CSV file:
select * from read_csv_auto('my_file.csv') limit 100;
Important Notes:
- This is an unofficial Snap package for DuckDB.
- DuckDB is a trademark of the DuckDB Foundation.