इस टूल में कोई समस्या है?
«एसक्यूएल ब्यूटीफायर ऑनलाइन» के बारे में
यह टूल SQL प्रश्नों को लगातार इंडेंटेशन, कीवर्ड कैपिटलाइज़ेशन और लाइन ब्रेक के साथ फ़ॉर्मेट करता है। कई जॉइन के साथ लंबे SELECT स्टेटमेंट पठनीय बन जाते हैं।
जटिल क्वेरीज़ की समीक्षा करते समय, दस्तावेज़ीकरण में SQL एम्बेड करते समय SQL ब्यूटीफिकेशन आवश्यक है।
टूल आधुनिक SQL डायलेक्ट को समझता है।
इस टूल का उपयोग कैसे करें
How to pretty-print a SQL statement
Paste the SQL
Drop a `SELECT`, `INSERT`, `UPDATE`, `DELETE`, or DDL statement into the "SQL" field. Most major dialects work — Postgres, MySQL, SQLite, MS SQL — though dialect-specific syntax (window-frame `ROWS BETWEEN`, `JSON_VALUE`, …) is kept verbatim, not normalised.
Press Run
Result returns a single `formatted` field. Keywords go uppercase (`SELECT`, `FROM`, `JOIN`, `WHERE`), columns indent under `SELECT`, joins land on their own line, and `AND` / `OR` chains break under `WHERE`.
Comments and strings
Single-line (`-- …`), block (`/* … */`), and Postgres `--` style comments pass through. String literals (`'foo'`) and quoted identifiers (`"col"`, `` `col` ``) are never touched — content inside them is treated as opaque.
What it doesn't change
No query rewriting, no optimisation hints, no schema validation. If your query reorders joins or alters parens, that's the formatter making cosmetic spacing choices — the semantics never shift.