SQL Insert Formatter
It just does the one thing
Download as .zip
Download as .tar.gz
View on GitHub
Enter SQL Insert Statements
To format them such that column names line up with values, and interesting values are listed first (e.g. non-null, non-zero).
INSERT INTO [dbo].[SuperHeroes] (Name, Weakness, HomePlanet, Age) VALUES (N'Kent, Clark', NULL, N'Krypton', 33); INSERT Villains (Name, TrueName, Location) VALUES ("Joker", "", "Gotham");
Format
...