Algorithm for neatly indenting SQL statements (Python implementation would be nice) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:42:19Z http://stackoverflow.com/feeds/question/798180 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/798180/algorithm-for-neatly-indenting-sql-statements-python-implementation-would-be-nic 4 Algorithm for neatly indenting SQL statements (Python implementation would be nice) Simon Willison 2009-04-28T14:14:24Z 2009-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#798251 1 Answer by James McMahon for Algorithm for neatly indenting SQL statements (Python implementation would be nice) James McMahon 2009-04-28T14:25:56Z 2009-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#798301 1 Answer by yukondude for Algorithm for neatly indenting SQL statements (Python implementation would be nice) yukondude 2009-04-28T14:35:22Z 2009-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#798363 0 Answer by Stefano Borini for Algorithm for neatly indenting SQL statements (Python implementation would be nice) Stefano Borini 2009-04-28T14:49:05Z 2009-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#798417 8 Answer by Andi Albrecht for Algorithm for neatly indenting SQL statements (Python implementation would be nice) Andi Albrecht 2009-04-28T14:59:12Z 2009-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>