Logo PEV2 db.cs.uni-tuebingen.de/explain DuckDB execution plan visualizer

Visualizing and understanding DuckDB EXPLAIN plans made easy.

For best results, use the following lines in any terminal running the DuckDB CLI:
PRAGMA enable_profiling = 'json';
PRAGMA profiling_output = '/path/to/file.json';
(optional)
[your-query-here]

Alternatively, you can use
EXPLAIN (ANALYZE, FORMAT JSON)
[your-query-here]

Plans

You haven't submitted any plan yet.