🔍
Desktop App
☀️
⚙️
SQL Formatter
Format and prettify SQL queries with dialect and style options.
Dialect
Standard SQL
MySQL
PostgreSQL
SQLite
MariaDB
BigQuery
T-SQL (SQL Server)
PL/SQL (Oracle)
Keyword case
UPPERCASE
lowercase
Preserve
SQL Input
select id,name,email from users where active=1 and created_at > '2024-01-01' order by name limit 10;
Formatted SQL
Copy
SELECT id, name, email FROM users WHERE active = 1 AND created_at > '2024-01-01' ORDER BY name LIMIT 10;