What SQL dialect does this support?
SQLite syntax. This covers most standard SQL including CREATE TABLE, SELECT, JOIN, GROUP BY, subqueries, CTEs (WITH), triggers, and views. MySQL or PostgreSQL-specific syntax may or may not work depending on the SQLite version bundled.
Is my data stored anywhere?
No. The SQLite database exists only in your browser's memory tab. Closing or refreshing the page destroys it entirely. No data is uploaded to any server.
How do I reset the database?
Click "Reload DB" to re-execute the Schema panel, which drops the old in-memory database and creates a fresh one. This is useful after experimenting with INSERT, UPDATE, or DELETE statements.
Can I run multiple statements?
Yes. The schema panel supports any number of CREATE TABLE, INSERT, and other DDL/DML statements. The query panel also supports multiple SELECT statements separated by semicolons — each produces its own result set.
Why does the first load take a moment?
SQLite WASM is fetched from a CDN on first use (~1MB). Once loaded, the binary is cached by the browser and subsequent loads are instant.