SQLite to Excel Converter Online
Export a SQLite table or query to an Excel workbook locally in your browser. No account or installation required. Your original file stays unchanged.
How to convert
- Open an unencrypted .db, .sqlite or .sqlite3 file in the workspace.
- Select a table to browse it, or write a query. Filters and sorting apply across the database.
- Choose Export data, select XLSX, and save the complete export.
What the download contains
Download an XLSX workbook with a frozen header row. NULL values are blank, BLOBs are hex text, and formula-like strings remain text. The export reruns one read-only SELECT and fails if workbook limits are exceeded.
Excel exports support up to 50,000 rows, 256 columns, 500,000 cells and 16 MiB of values. Exceeding a limit fails explicitly; use CSV or JSON for larger results. Large integers become text to preserve their digits.
SELECT * FROM customers ORDER BY id;Complete export, bounded preview
The grid displays a bounded preview. CSV, JSON, Excel and PDF export runs one read-only SELECT again against the current database; it respects any LIMIT in your query. It does not rerun writes or export cached results. To export a whole table, select Current table with applied filters and sorting. Export one table per download.
File size and browser support
Rows are processed in chunks with progress and cancellation. Browsers with direct file saving write to disk; other browsers use a download limited to 64 MiB. Exceeding that limit fails explicitly instead of downloading a partial result. Large individual values and query execution limits still apply. Saved SQLite imports use browser storage; temporary database imports are limited to 100 MiB.
Keep a database backup
Use Export database for a complete SQLite snapshot, including full BLOBs. CSV and JSON are data formats, not schema-preserving backups. SQL dumps contain transaction commands that the workspace deliberately rejects; restore them in an external SQLite client.
Read the export guide · SQLite viewer · Convert CSV to SQLite