generator
Password Generator
Generate strong, secure random passwords with customizable length and character types.
formatter
Format SQL queries into readable clauses, uppercase keywords, or minify statements for compact output.
How to use
SQL becomes hard to review when long joins, conditions, and nested queries are compressed onto one line. A formatter improves readability by separating the major clauses that matter most during debugging: where rows come from, how tables are joined, what filters are applied, and how results are grouped or ordered. That makes it easier to catch missing conditions, compare query versions, or walk someone else through a statement during code review.
Keyword case is another small but useful detail. Some teams prefer uppercase SQL commands because they stand out against identifiers, while others keep everything lowercase to match application code style. This formatter supports both approaches while also offering a minify mode for the opposite task: shrinking a readable query into a compact string for quick copying, logging, or embedding in test fixtures.
Related tools