Quick Start

Try It Instantly

SQL Studio ships with a built-in sample SQLite database. Run a single command to launch the full UI with no setup:

sql-studio sqlite preview

This creates a temporary sample database and opens http://127.0.0.1:3030 in your browser.

Use Your Own Database

Point SQL Studio at any local SQLite file:

sql-studio sqlite ./my-database.db

Or connect to a remote database:

# PostgreSQL
sql-studio postgres postgresql://user:pass@localhost/mydb

# MySQL
sql-studio mysql mysql://user:pass@localhost/mydb

What You'll See

Once SQL Studio opens, you'll land on the Overview page:

Overview page showing database metadata and bar charts

This shows:

From there, use the sidebar to navigate to:

Next Steps