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';
(optional)
PRAGMA profiling_output = '/path/to/file.json';
[your-query-here]
Alternatively, you can use
EXPLAIN (ANALYZE, FORMAT JSON)
[your-query-here]
Plans
-
created
You haven't submitted any plan yet.