The formatter supports standard SQL and works with MySQL, PostgreSQL, SQLite, SQL Server, and most other SQL dialects. Keywords are uppercased automatically.
Does this validate SQL syntax?
This is primarily a formatter/beautifier. It will format valid SQL and may catch some syntax errors, but it's not a full SQL parser. For complex queries, test in your database.
How does the formatting work?
The formatter adds line breaks after major clauses (SELECT, FROM, WHERE, JOIN), indents subqueries, and uppercases SQL keywords for readability.
Are my SQL queries logged or sent to a server?
No. Formatting happens locally in your browser, so queries that may reveal table names, schema details, or embedded values never leave your device. Nothing is stored or logged, making it safe to beautify production queries.