Algorithm for neatly indenting SQL statements (Python implementation would be nice) - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T03:42:19Zhttp://stackoverflow.com/feeds/question/798180http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/798180/algorithm-for-neatly-indenting-sql-statements-python-implementation-would-be-nic4Algorithm for neatly indenting SQL statements (Python implementation would be nice)Simon Willison2009-04-28T14:14:24Z2009-07-21T19:41:21Z
<p>I'd like to reformat some SQL statements that are a single string with newlines in to something that's much easier to read.</p>
<p>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?</p>
<p>Has anyone seen a pretty-printing algorithm that does this already? In Python would be even better.</p>
http://stackoverflow.com/questions/798180/algorithm-for-neatly-indenting-sql-statements-python-implementation-would-be-nic/798251#7982511Answer by James McMahon for Algorithm for neatly indenting SQL statements (Python implementation would be nice)James McMahon2009-04-28T14:25:56Z2009-04-28T14:25:56Z<p>I personally use <a href="http://www.sqlinform.com/" rel="nofollow">SQL Inform</a> for quick SQL formating, which is written in Java and is unfortunately not open source, so there is no access to the underlying algorithm.</p>
http://stackoverflow.com/questions/798180/algorithm-for-neatly-indenting-sql-statements-python-implementation-would-be-nic/798301#7983011Answer by yukondude for Algorithm for neatly indenting SQL statements (Python implementation would be nice)yukondude2009-04-28T14:35:22Z2009-04-28T14:35:22Z<p>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:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/519876/sql-formatting-standards">http://stackoverflow.com/questions/519876/sql-formatting-standards</a></li>
<li><a href="http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow">http://stackoverflow.com/questions/522356/what-sql-coding-standard-do-you-follow</a></li>
</ul>
http://stackoverflow.com/questions/798180/algorithm-for-neatly-indenting-sql-statements-python-implementation-would-be-nic/798363#7983630Answer by Stefano Borini for Algorithm for neatly indenting SQL statements (Python implementation would be nice)Stefano Borini2009-04-28T14:49:05Z2009-04-28T14:49:05Z<p>Don't know if it answers your question, but I generally use this strategy</p>
<pre><code>SELECT what1, what2, etc,
FROM table
WHERE condition
AND condition
AND condition
ORDER BY whatever
</code></pre>
<p>But that's just me. I don't think proper automatic tools exist.</p>
http://stackoverflow.com/questions/798180/algorithm-for-neatly-indenting-sql-statements-python-implementation-would-be-nic/798417#7984178Answer by Andi Albrecht for Algorithm for neatly indenting SQL statements (Python implementation would be nice)Andi Albrecht2009-04-28T14:59:12Z2009-04-28T14:59:12Z<p>You can try <a href="http://python-sqlparse.googlecode.com" rel="nofollow">sqlparse</a>. It's a Python module that provides simple SQL formatting. A online demo is available <a href="http://sqlformat.appspot.com" rel="nofollow">here</a>.</p>