SQL
Formatter

Format and beautify SQL queries with proper indentation and keyword casing.

Dialect

Indent

Keywords

Style

Formatted SQL

SELECT
  u.id,
  u.name,
  o.total
FROM
  users u
  JOIN orders o ON u.id = o.user_id
WHERE
  o.total > 100
ORDER BY
  o.total DESC