Use case

A DuckDB desktop client for file transformation work.

Bendit is not trying to be a full database IDE. It focuses on using DuckDB where it shines: local analytical SQL over files.

Typical cases

  • Need a practical DuckDB UI for local files
  • Want a fast SQL workflow around Excel, CSV and Parquet
  • Do not want to upload data to a cloud service

Example SQL

select
  region,
  count(*) as orders,
  sum(amount) as revenue
from orders
group by region
order by revenue desc;

How Bendit helps

  1. Import the file directly into the local workbench.
  2. Inspect columns, types and preview rows.
  3. Transform with DuckDB SQL.
  4. Export a clean CSV or Parquet result.