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.
如何使用 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.
常見問題
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.
來源
嵌入此工具
將此工具加入你自己的網站。複製下方的程式碼片段,它會自動保持最新。
<iframe src="https://monu.tools/embed/zh-Hant/sqlite-online" width="100%" height="640" style="border:1px solid #e5e5e5;border-radius:12px;max-width:680px" loading="lazy" title="Monu Tools"></iframe>相關工具
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 表格
將 CSV 轉為 Markdown 表格,也可將 Markdown 表格轉回 CSV,雙向均可。
CSV / Excel
在瀏覽器中將 CSV 轉換為 Excel .xlsx 檔案,或將 Excel 轉換回 CSV,支援雙向轉換。
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.