Skip to content

Online Demo

Use the playground below to format SQL examples with different dialects and indentation settings.

Formatted
SELECT
  supplier_name,
  city
FROM
  suppliers
WHERE
  supplier_id > 500
ORDER BY
  supplier_name ASC,
  city DESC;

Released under the MIT License.