Format SQL for Readability
Turn messy one-line queries into clean, properly indented SQL.
How to Use
Before & After
Before:SELECT u.name,u.email FROM users u JOIN orders o ON u.id=o.user_id WHERE o.total>100
After:
SELECT
u.name,
u.email
FROM users u
JOIN orders o ON u.id = o.user_id
WHERE o.total > 100
FAQ
Does it support all SQL dialects?It handles standard SQL syntax used by MySQL, PostgreSQL, SQLite, and SQL Server.
Can it minify SQL?Yes — toggle between beautify and minify modes.
Essayer Formatter SQL
Formatter des requêtes SQL pour une meilleure lisibilité.
sql
format
beautify
database

