AI-Powered Query Generation
Powered by Google Gemini Pro. Describe what you want in plain English and get production-ready SQL in seconds.
Query Studio is a beautiful, AI-powered desktop database client. Describe what you want — get the exact SQL, an explanation, and live results. Postgres, MySQL, SQLite, MongoDB, Redis & Firebase. Built with Tauri.
Features
A native client built for developers who think in questions, not in SELECTs.
Powered by Google Gemini Pro. Describe what you want in plain English and get production-ready SQL in seconds.
One client for PostgreSQL, MySQL, SQLite, MongoDB, Redis, Firestore and Firebase Realtime Database.
Don't just copy-paste. Get a step-by-step plain-English explanation of every generated query.
Run queries instantly. Browse responsive, sortable result tables built for fast iteration.
Your credentials stay on your machine. Connections are stored and managed locally — never on a server.
Browse Firestore collections and subscribe to Realtime DB nodes. Watch values change as they happen.
Connect to the databases you already use
How it works
Add your Postgres, MySQL, SQLite, MongoDB, Redis, or Firebase project. Credentials are encrypted and stored locally.
"List all users who signed up last week and spent over $500." Query Studio understands your schema.
See generated SQL with a step-by-step breakdown. Re-run with one click and tweak the prompt to refine.
Ask in plain English
List the top 5 customers by total spend last quarter.
Generated SQL
SELECT c.id, c.name, SUM(o.total) AS spend FROM customers c JOIN orders o ON o.customer_id = c.id WHERE o.created_at >= date_trunc('quarter', now() - interval '3 months') AND o.created_at < date_trunc('quarter', now()) GROUP BY c.id ORDER BY spend DESC LIMIT 5;
Download v0.0.4
Free and open source. Direct downloads from GitHub Releases — no account required.
.dmg installer
.exe / .msi installer
AppImage / .deb / .rpm
Looking for older builds? See all releases on GitHub.
Query Studio is open source under the MIT license. Built in Ghana with Vue, Tauri & Rust.