Query any database.
Beautifully.

A fast, elegant SQL editor that connects to MySQL, PostgreSQL, SQLite, and SQL Server. Built for developers who care about their tools.

v{{version}} · macOS, Windows

InQuery — main.sql
Connections
Production DB
users
orders
products
sessions
Staging DB
Local SQLite
-- Find top customers this month
SELECT u.name, COUNT(o.id) AS total_orders,
       SUM(o.amount) AS revenue
FROM users u
JOIN orders o ON u.id = o.user_id
WHERE o.created_at >= '2025-03-01'
GROUP BY u.name
ORDER BY revenue DESC
LIMIT 5;
Results 5 rows · 12ms
nametotal_ordersrevenue
Alice Chen47$12,840
Marcus Johnson38$9,215
Priya Patel34$8,670

Works with the databases you already use

MySQL
PostgreSQL
SQLite
SQL Server

Everything you need.
Nothing you don't.

A focused, fast SQL editor without the bloat. Connect, query, explore.

Multi-Database

Connect to MySQL, PostgreSQL, SQLite, and SQL Server from a single app. Switch between connections instantly.

SSH Tunnels

Connect securely through SSH tunnels with key-based or password authentication. Access remote databases safely.

Schema Browser

Explore databases, tables, and columns in an expandable tree. Double-click any table to instantly preview its data.

Smart Editor

Syntax-highlighted SQL editor powered by CodeMirror. Tabbed interface for running multiple queries side by side.

Import & Export

Import CSV, JSON, and SQL files. Export query results or entire databases with a single click.

Native & Beautiful

Crafted dark theme with smooth animations. Feels native on macOS and Windows with a drag-resizable sidebar.

Three steps. That's it.

1

Connect

Add your database credentials. Supports direct connections and SSH tunnels out of the box.

2

Query

Write SQL in a beautiful editor with syntax highlighting. Run queries instantly with keyboard shortcuts.

3

Explore

Browse results, inspect schemas, and export data. Everything you need in a single, fast interface.

Ready to get started?

Free, open source, and available for macOS and Windows.

v{{version}} · Free & Open Source · No account required