Docs

Quickstart

Attach files, run SQL, and export results in minutes.

Attach files

  1. 1
    Click Attach in the Console.
  2. 2
    Select CSV, Parquet, and Excel (.xlsx) files.
  3. 3
    Confirm table names and import.

Note

Multiple files can be attached in the same session.

Run SQL

Tables appear in the table list after import.

Run queries in the active tab. Each tab keeps its own SQL so you can switch between queries without losing work.

DuckDB SQLsql
SELECT * FROM customers LIMIT 20;

SELECT o.id, c.name
FROM orders o
JOIN customers c ON c.id = o.customer_id
LIMIT 50;

Export results

Use Export to download a CSV without showing every row on screen.

Export uses the SQL currently in the editor. There is no table-only export path.

Tip

Preview rows are capped for speed. Export uses your full SQL (within your plan limits).