SQL Minifier

53lu > SQL Minifier
Format

SQL Minifier Online

The Minifier SQL online was created to help with removing all whitespace, indentation and newlines for decrease size and amount of data transferred to clients. The purpose of minifcation is to increase the speed of communication between servers. Minimisation can make a sql up to 10% smaller, resulting in a faster download time.

How it Works?

Just paste your SQL to the textarea above and click to the button "Minify" and you will get compressed SQL in the same textarea.

Example of SQL Minify

Before:

FROM table1
WHERE NOT EXISTS
	(SELECT *
	FROM table2
	WHERE table1.field1 = table2.field1);

After:

DELETE FROM table1 WHERE NOT EXISTS(SELECT * FROM table2 WHERE table1.field1 = table2.field1);
Copyright © 2021-2024 53lu