SQLite Online
Run SQLite in your browser: create tables, insert data and run any SQL, then export the database file. Everything stays on your device.
Slik bruker du SQLite Online
- 01
Write SQL in the editor, or keep the sample that creates and queries a table.
- 02
Click Run (or press Ctrl/Cmd + Enter) to execute it; results appear below.
- 03
Keep running statements against the same database, and Export it when you are done.
What it does
This tool runs a real SQLite database in your browser through WebAssembly. Create tables, insert rows and run any query or statement, with results shown as tables.
The database lives in memory on your device and can be exported as a .sqlite file, so it is a private, install-free SQL sandbox.
A real database in the browser
The engine is SQLite compiled to WebAssembly, so it supports the SQL you expect: joins, aggregates, indexes, views and transactions. Multiple statements run in one go and each result set is listed.
Your session persists as you run more queries, and Export saves the whole database to a file. The first run loads the engine once; after that it is instant and works offline.
Private and unlimited
Every conversion happens locally in your browser, so your data is never uploaded, logged or stored on a server. You can use it on confidential exports without a second thought, and it keeps working offline once the page has loaded.
There is no sign-up, no watermark and no row limit: the only ceiling is your device's memory.
Ofte stilte spørsmål
Is this a real SQLite database?
Yes. It is the official SQLite engine compiled to WebAssembly, running fully in your browser, so behaviour matches a normal SQLite file.
Does my SQL or data leave the browser?
No. The engine and the database run entirely on your device. Nothing you type or import is uploaded, and you can export the database to keep it.
Can I save my database?
Yes. Use Export to download the in-memory database as a .sqlite file you can reopen in any SQLite tool.
Is there a row or file-size limit?
There is no fixed row cap or daily quota. Because everything runs locally the practical limit is your device's memory, which comfortably handles the tens of thousands of rows most exports contain.
Is my data uploaded anywhere?
No. The conversion runs entirely in your browser with client-side JavaScript, so nothing you paste or drop ever leaves your device. That makes it safe for spreadsheets that contain customer emails, financial figures or other sensitive data.
Kilder
Bygg inn dette verktøyet
Legg til dette verktøyet på ditt eget nettsted. Kopier kodesnutten nedenfor; den holdes automatisk oppdatert.
<iframe src="https://monu.tools/embed/nb/sqlite-online" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>Relaterte verktøy
Query CSV (SQL)
Run SQL SELECT queries against a CSV in your browser: it loads into a table you can filter, group and join. Nothing is uploaded.
Markdown-tabell
Konverter CSV til en Markdown-tabell og Markdown-tabeller tilbake til CSV, begge retninger.
CSV / Excel
Konverter CSV til en Excel .xlsx-fil og Excel tilbake til CSV, helt i nettleseren din. Fungerer i begge retninger.
CSV → JSON
Convert CSV to a JSON array of objects, with types inferred. Choose the delimiter and copy the result. Runs entirely in your browser.