Skip to main content

Import & Export

Export data in five formats (CSV, JSON, SQL, MQL, XLSX), import SQL files with gzip support, and paste tabular data from the clipboard into the grid.

Export Data

  1. Run a query or open a table
  2. Click Export in the toolbar (Cmd+Shift+E)
  3. Choose a format, select tables, configure options
  4. Click Export
MongoDB: SQL export is not available. Use CSV, JSON, MQL, or XLSX. MQL generates db.collection.insertMany([...]) scripts for mongosh.
Redis: SQL and MQL exports are not available. Use CSV, JSON, or XLSX.
Export dialog

Export Formats

Best for spreadsheets and data analysis tools.
OptionDefault
Header rowYes
Delimiter (comma, semicolon, tab, pipe)Comma
Quote handling (always, as needed, never)As needed
NULL to empty stringsYes
Line breaks in values to spacesNo
Line ending (LF, CRLF, CR)LF
Decimal separator (period, comma)Period
Formula sanitizationYes
CSV export options

Exporting Query Results

Right-click the results grid and select Export Results…, or go to File > Export Results…. Choose a format, configure options, and click Export. Only in-memory results are exported.
Use LIMIT in your query to control export size for large tables.

Exporting Entire Tables

Click a table in the sidebar and click Export, or run SELECT * FROM table_name and export.
Export multiple tables at once via the export dialog’s tree view. SQL exports support per-table options for structure, DROP, and data.

Clipboard Paste (CSV/TSV)

Paste tabular data directly into the data grid. Press Cmd+V after selecting a row. Format is auto-detected: tabs parse as TSV, commas as CSV.

Import Data

Import .sql and .sql.gz files. Statements execute directly against your database: backups, migrations, seed data.
MongoDB: SQL import is not available. Use mongoimport or the MQL shell.

Import Workflow

1

Open Import Dialog

Click File > Import (Cmd+Shift+I), or drag and drop a .sql / .sql.gz file onto the app.
2

Configure Options

Set encoding, transaction wrapping, and foreign key check options.
3

Preview and Import

Review the SQL preview, statement count, and file size. Click Import to execute.
Import dialog

Import Options

OptionDescriptionDefault
EncodingFile encoding: UTF-8, UTF-16, Latin1, or ASCIIUTF-8
Wrap in transactionExecute all statements within a single transactionYes
Disable foreign key checksTemporarily disable FK constraints during importYes

Progress and Errors

During import, a progress bar shows statements processed, current statement, and overall completion.
Import progress
Import stops on the first error. If wrapped in a transaction, all changes roll back automatically.