RevealTheme logo

Formattatore SQL

Formatta e abbellisce le query SQL: interruzioni di riga sulle parole chiave, elenchi di colonne con rientro.

Come usare questo strumento

  1. 1

    Paste or type your SQL query into the input box.

  2. 2

    The formatted version appears instantly in the read-only panel below — there is no separate Format button.

  3. 3

    Select the output text and copy it manually into your editor or query tool.

Che cos'è il formattatore SQL?

Leggere SQL minificato o su una sola riga è penoso. Questo formattatore inserisce interruzioni di riga sulle parole chiave principali (SELECT, FROM, WHERE, JOIN, ecc.) e applica un rientro agli elenchi di colonne per facilitarne la lettura. L'output è funzionalmente identico all'input: la formattazione non cambia la semantica.

Casi d'uso comuni

  • Untangling a one-line SQL query copied out of an application log or ORM debug output so you can read it.

  • Quickly making a SELECT with a long column list scannable before reviewing it in a pull request.

  • Normalizing keyword casing to uppercase across an ad-hoc query you wrote in lowercase.

  • Pasting a minified query from a config file or migration into a readable shape for documentation.

  • Teaching or explaining a query's clause structure by breaking SELECT, FROM, WHERE, and JOIN onto their own lines.

  • Doing a fast cleanup before a query is too short to justify opening a full IDE formatter.

Domande frequenti

Questo riscriverà la mia query?
No: la formattazione è puramente estetica. Faccia passare l'output attraverso un linter se desidera verifiche di correttezza.

Strumenti correlati