Docs
Docs/SQL Editor/Writing Queries

Writing Queries

Execute SQL queries with powerful features

The SQL editor provides a powerful environment for writing and executing queries with syntax highlighting, auto-formatting, and intelligent suggestions.

Single Query

SELECT * FROM users WHERE active = true;

Multiple Queries

-- Run multiple statements
SELECT * FROM users;
SELECT * FROM orders;
SELECT * FROM products;

Press Cmd/Ctrl + Enter to execute the query.

Run Selected Text

Highlight a portion of your SQL and press Cmd/Ctrl + Shift + Enter to run only the selected text.

Need help?

Join our Discord community for support and discussions.

Join Discord