Automatically format and beautify your messy SQL queries to make them readable and consistent.
A SQL formatter reflows a dense or minified query into consistent indentation and line breaks, making it much easier to review — especially for queries that come out of an ORM's debug log as a single unreadable line.
No — it's a formatter, not a query validator or execution engine. It reflows syntax for readability; it doesn't check the query against a real database schema.
No, formatting happens entirely in your browser. This matters since queries often contain real table/column names and sometimes literal data in WHERE clauses.