SQL Formatter

Format and beautify complex SQL queries for any major database

Input & Settings

2 spaces

Formatted Output

Formatted SQL will appear here

SQL Formatting Patterns

Select Statement

SELECT
  id,
  name,
  email
FROM users
WHERE
  active = 1
  AND role = 'admin'
ORDER BY
  created_at DESC
LIMIT 5