Is there a tool out there that will take sql and align it vertically?
what I have:
SELECT first_name AS foo
,last_name AS bar
,ssn AS bas
,address AS chu
FROM dbo.contacts;
desired results or something similar to the statement below:
SELECT first_name AS foo
,last_name AS bar
,ssn AS bas
,address AS chu
FROM dbo.contacts;
My team has been using http://poorsql.com/ to line things up, but it would be nice to be able to make use of white space and have our AS statements line up without having to manually format everything.