Sign In Download Free

Documentation

Everything you need to get started and master Sutido — for every engine.

Quick Start

From download to your first query.

1

Download & Install

Download Sutido for Windows and run the installer.

2

Add a Connection

Pick your engine — MongoDB, PostgreSQL, SQL Server, Aerospike, ClickHouse or Elasticsearch — and paste a URI or fill in the form.

postgresql://user:pass@localhost:5432/mydb
3

Start Querying

Open a collection or table and write queries in the engine's own language, with schema-aware autocomplete.

db.getCollection("customers").find({ city: "Berlin" }).limit(10)
📖

Getting Started

New to Sutido? Start with our installation guide.

Get Started
💬

Contact Support

Questions or feedback? A real person reads the inbox.

Get Help
🐛

Report Issues

Found a bug? Describe what happened and we'll chase it down.

Report a Bug

One Editor, Six Dialects

The mongo shell, PostgreSQL, T-SQL, AQL, ClickHouse SQL and Elasticsearch Query DSL — all in the same Monaco-powered editor with schema-aware autocomplete.

Learn More
-- IntelliShell suggests tables and columns from your schema
SELECT name, email, city
FROM customers
WHERE lifetime_value > 1000
ORDER BY lifetime_value DESC