Skip to content

Instantly share code, notes, and snippets.

@wwalker
Created August 16, 2009 21:41
Show Gist options
  • Save wwalker/168773 to your computer and use it in GitHub Desktop.
Save wwalker/168773 to your computer and use it in GitHub Desktop.
SQL Beautifier / SQL Formatter
#!/usr/bin/perl -w
use strict;
use SQL::Beautify;
my $sql_query = "";
while (<>) {
$sql_query .= $_;
}
my $sql = new SQL::Beautify;
$sql->query($sql_query);
my $nice_sql = $sql->beautify;
print $nice_sql;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment