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/ko/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.