SQL Minifier
Minify SQL by removing unnecessary whitespace and comments, while preserving exactly what the query does.
Paste your SQL query below - this tool strips extra whitespace and comments down to a compact single line, without changing what it does.
Use the SQL Query Formatter if you want the opposite - clean, readable formatting instead of a compact single line.
What Does This Tool Do?
It removes redundant whitespace, line breaks, and comments from a SQL query, collapsing it to a compact form - useful when a query needs to be embedded in a single-line context (like an environment variable or a compact log entry).
Why Use This Tool?
Some contexts (certain config files, single-line log formats, copy-pasting into a chat that mangles line breaks) work better with SQL on one line. This tool compacts it safely without altering what it does.
How to Use It
- Paste your SQL query.
- Click Minify.
- Copy the compact, single-line result.
Limitations
String literals are left untouched (whitespace inside a quoted string is meaningful and never altered) - only whitespace between SQL tokens and comments outside of strings are removed.