vote up 3 vote down star

I'd like to reformat some SQL statements that are a single string with newlines in to something that's much easier to read.

I don't personally know of a good coding style for indenting SQL - how should nested queries / where clauses / left joins / etc by represented to maximise readability?

Has anyone seen a pretty-printing algorithm that does this already? In Python would be even better.

flag

4 Answers

vote up 7 vote down check

You can try sqlparse. It's a Python module that provides simple SQL formatting. A online demo is available here.

link|flag
That looks like exactly what I was looking for, thanks! – Simon Willison Apr 28 at 18:00
Thanks for that Andi, this looks pretty cool. – James McMahon Apr 28 at 18:29
And I just noticed that it is your app. – James McMahon Apr 28 at 18:36
@nemo: Giving the best to hide myself, but Web2.0 always displays the same picture anywhere ;-) – Andi Albrecht Apr 28 at 19:00
vote up 1 vote down

I personally use SQL Inform for quick SQL formating, which is written in Java and is unfortunately not open source, so there is no access to the underlying algorithm.

link|flag
vote up 1 vote down

Perhaps part of the difficulty in finding a tool is that there are so many different "standard" SQL formatting conventions. Here are two SO questions that describe people's preferences:

link|flag
vote up 0 vote down

Don't know if it answers your question, but I generally use this strategy

SELECT what1, what2, etc,
FROM table
WHERE condition
  AND condition
  AND condition
ORDER BY whatever

But that's just me. I don't think proper automatic tools exist.

link|flag

Your Answer

Get an OpenID
or

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