Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to beautify the SQL Queries I write.

What free tools exist that allow for SQL query formatting?

share|improve this question

closed as not constructive by Will Oct 18 '11 at 15:35

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

PoorMansTSqlFormatter is a free and open-source online beautifier, with offline SSMS Add-In, command-line beautifier tool, and Notepad++ plugin.

The project aims to format any T-SQL (2000 or later) script, no matter the length or complexity.

Hope this helps!

share|improve this answer
1  
I am glad I found you! I was looking for something that is FREE, does not 'call home' (online) to watch my queries, is portable and uses my 'feel-home' environment of Notepad++. Thanks heaps! – SarjanWebDev Feb 14 '12 at 3:08
there is also a free online Java based formatter sqlinform.com – Guido Feb 2 at 21:12

T-SQL Tidy is a very good online SQL formatter/beautifier.

It has a lot of formatting options. Though it's targeted to T-SQL, it should work with most SQL dialects.

share|improve this answer
2  
It now offers an SSMS add-in that works completely offline. Seems to offer more options than PoorMansTsqlFormatter. – Holistic Developer Feb 28 at 3:56

There is a free online Instant SQL Formatter. The site also sells some other versions (add-in for Visual Studio, for example), but the online version is free.

share|improve this answer

I've always been a fan of navicat - http://www.navicat.com

Their lite version is free, but it still comes with the sql beautifier - http://www.navicat.com/en/products/navicat_premium/premium_feature.html

As an added bonus occasionally you'll find some chinglish hiding in odd places.

share|improve this answer
2  
The Lite version no longer includes the SQL Beautifier for free -- it requires you to purchase to enable it. – Cory Sep 19 '11 at 15:27

red Jul 22 '10 at 15:13 @Christopherous 5000

I was looking for the same in notepad++ and found a link that gives an idea of how to create your own formatting with macros: http://peoplesoft.wikidot.com/formatting-sql-in-notepad. Seems like it would work, but I'm going to use one of the SSMS Add-ins above. (Less work) Thanks!

share|improve this answer

Sequel Pro If using OS X otherwise just work out what you need then develop your query using your knowledge and use the command line tool(my personal favourite:)).

share|improve this answer
But Sequel Pro is only for MySQL, right? – newenglander Apr 10 '12 at 11:20

Notepad++ supports syntax highlighting for many languages including SQL, might be helpful.

share|improve this answer
enlighten me please, where is that "format SQL" option? – camilin87 Apr 25 '11 at 15:05
1  
@camilin87, updated answer to clarify that Notepad++ provides syntax highlighting, not full formatting. – Christopherous 5000 Apr 25 '11 at 22:03
AFAIK there is no formatting for SQL in n++, neither in the core nor available as plugin. – wwerner May 19 '11 at 9:46
@wwemer, I'm looking at it right now. Look for SQL under the Language menu. See my comment that I'm talking about syntax highlighting. – Christopherous 5000 May 26 '11 at 21:34
1  
Guys, poorsql.com does the job with NPP plugin! – SarjanWebDev Feb 14 '12 at 3:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.