返回 Skill 列表
extension
分类: 数据与分析无需 API Key

DuckDB SQL 分析代理

使用DuckDB进程内数据库引擎在本地文件(CSV、Parquet、JSON)上运行分析SQL查询。支持无需服务器即可直接从磁盘上的平面文件进行快速OLAP风格分析。

person作者: user_3c6cb52ehubcommunity

DuckDB SQL 分析代理

Run analytical SQL queries on local files (CSV, Parquet, JSON) using the DuckDB in-process database engine. Enables fast OLAP-style analysis without a server, directly from flat files on disk.

Installation

Use the upstream install or setup path that matches your environment:

  • For development, DuckDB requires CMake, Python 3 and a C++17 compliant compiler. In the root directory, run make to compile the sources. For development, use make debug to build a non-optimized de...

Requirements and caveats from upstream:

Basic usage or getting-started notes:

  • If you want to install DuckDB, please see our installation page for instructions.

  • Data Import

  • For CSV files and Parquet files, data import is as simple as referencing the file in the FROM clause:

  • Source: https://github.com/1991513ccie-png/skills

  • Extracted from upstream docs: https://raw.githubusercontent.com/duckdb/duckdb/HEAD/README.md