vote up 10 vote down star
2

Hi,

What is the accepted practice for indenting SQL statements? For example, consider the following SQL statement:

SELECT column1, column2
FROM table1
WHERE column3 IN
(
SELECT TOP(1) column4
FROM table2
INNER JOIN table3
ON table2.column1 = table3.column1
)

How should this be indented? Many thanks.

flag

19 Answers

vote up 11 vote down check
SELECT column1
     , column2
FROM table1
WHERE column3 IN
(
	SELECT TOP(1) column4
	FROM table2
	INNER JOIN table3
	ON table2.column1 = table3.column1
)

I like to have all "," in front, this way I never search them when an error at line X from the SQL editor.


This is an example for those who do not use this type of writting SQL statement. Both contain an error of a missing comma.

SELECT sdcolumn123
 , dscolumn234
 , sdcolumn343
 , ffcolumn434
 , sdcolumn543
 , bvcolumn645
  vccolumn754
 , cccolumn834
 , vvcolumn954
 , cvcolumn104
FROM table1
WHERE column3 IN
(
	...
)

SELECT sdcolumn123, dscolumn234, asdcolumn345, dscolumn456, ascolumn554, gfcolumn645 sdcolumn754, fdcolumn845, sdcolumn954, fdcolumn1054
FROM table1
WHERE column3 IN
(
	...
)

I found easier and more quick at the first example. Hope this example show you more my point of view.

link|flag
Yes pre-comma looks silly but its so much easier to manage in the long run. – cfeduke Nov 7 '08 at 14:34
What does that mean, "this way I never search them"? – Codewerks Nov 7 '08 at 14:34
With the leading comma, you always know where they are and don't have to go looking for them. – Ken Gentle Nov 7 '08 at 14:36
sometime you search where you are missing the comma... it's clear when they are in the front. The day you will have an error in an SQL statement because of comma you will think of me ;) – Daok Nov 7 '08 at 14:37
Very clever! Since I pre-comma I never need to care about comma error anymore. Nice one. – Pokus Nov 7 '08 at 14:38
show 4 more comments
vote up 1 vote down

I've just put it through my SQL prettifier and it came out like this....

SELECT column1, column2
FROM table1
WHERE column3 IN
(
SELECT TOP(1) column4
    FROM table2
            INNER JOIN table3
            ON table2.column1 = table3.column1
)

http://extras.sqlservercentral.com/prettifier/prettifier.aspx

.....But I haven't worked out a way of getting colours into StackOverflow.

link|flag
vote up 4 vote down

If you have a lengthy SQL statement that you'd like to reformat without all the typing and tabbing, you can slap it into this website and get a nicely formatted result. You can experiment with various formats to see which makes your text the most readable.

link|flag
Cool link. Not sure I'd use it myself, but something nice to bookmark. – Pistos Nov 7 '08 at 16:35
vote up 1 vote down

I've written a code standard for our shop that is biased in the extreme towards readability/"discoverability" (the latter being primarily useful in insert-select statements):

SELECT 
    column1, 
    column2
FROM 
    table1
WHERE 
    column3 IN
    (
        SELECT TOP(1) 
            column4
        FROM 
            table2
            INNER JOIN table3 ON table2.column1 = table3.column1
    )

On more complex queries it becomes more obvious how this is useful:

SELECT
    Column1,
    Column2,
    Function1
    (
        Column1,
        Column2
    ) as Function1,
    CASE
    WHEN Column1 = 1 THEN
        a
    ELSE
        B
    END as Case1       
FROM
    Table1 t1
    INNER JOIN Table2 t2 ON t1.column12 = t2.column21
WHERE
    (
        FilterClause1
        AND FilterClause2
    )
    OR
    (
        FilterClause3
        AND FilterClause4
    )

Once you move to systems with more than a single join in most of your queries, it has been my experience that using vertical space liberally is your best friend with complex SQL.

link|flag
vote up 3 vote down

I like jalbert's form of lining up the keywords on their right. I'd also add that I like the ANDs and ORs on the left (some people put them on the right.) In addition, I like to line up my equals signs when possible.


SELECT column1, 
       column2  
  FROM table1, table2 
 WHERE table1.column1 = table2.column4 
   AND table1.col5    = "hi" 
    OR table2.myfield = 678 
link|flag
My personal preference too - I find it helps enormously when quickly scanning code if the keywords are lined up precisely where one expects them to be – Cruachan Jan 19 at 17:53
vote up 1 vote down

SQL formatting is an area where there is a great deal of variance and disagreement... But fwiw, I like to focus on readability and think that whatever you do, consistently conforming to any rules that reduce readability is, as the old cliche goes, a "foolish consistency" ( "Foolish consistency is a hobgoblin for simple minds" )

So, instead of calling them rules, here are some guidelines. For each Major clause in a SQL statement (Select, Insert, Delete, From, Where, Having, Group BY, Order By, ... I may be missing a few) should be EASILY identifiable. So I generally indent them at the highest level, all even with each other. Then within each clause, I indent the next logical sub structure evenly... and so on.. But I feel free to (and often do) change the pattern if in any individual case it would be more readable to do so... Complex Case statements are a good example. Because anything that requires horizontal scrolling reduces readability enormously, I often write complex (nested) Case expressions on multiple lines. When I do, I try to keep the beginning of such a statement hanging indent based on it's logical place in the SQL statement, and indent the rest of the statement lines a few characters furthur...

SQL Database code has been around for a long time, since before computers had lower case, so there is a historical preference for upper casing keywords, but I prefer readability over tradition... (and every tool I use color codes the key words now anyway)

I also would use Table aliases to reduce the amount of text the eye has to scan in order to grok the structure of the query, as long as the aliases do not create confusion. In a query with less than 3 or 4 tables, Single character aliases are fine, I often use first letter of the table if all ther tables start with a different letter... again, whatever most contributes to readability. Finally, if your database supports it, many of the keywords are optional, (like "Inner", "Outer", "As" for aliases, etc.) "Into" (from Insert Into) is optional on Sql Server - but not on Oracle) So be careful about using this if your code needs to be platform independant...

Your example, I would write as:

Select column1, column2
From table1 T1
Where column3 In (Select Top(1) column4
                  From table2 T2
                     Join table3 T3
                         On T2.column1 = T3.column1)

Or

Select column1, column2
From table1 T1
Where column3 In 
     (Select Top(1) column4
      From table2 T2
         Join table3 T3
            On T2.column1 = T3.column1)

If there many more columns on the select clause, I would indent the second and subsequent lines... I generally do NOT adhere to any strict (one column per row) kind of rule as scrolling veritcally is almost as bad for readability as scrolling horizontally is, especially if only the first ten columns of the screen have any text in them)

Select column1, column2, Col3, Col4, column5,
    column6, Column7, isNull(Column8, 'FedEx') Shipper,
    Case Upper(Column9) 
       When 'EAST'  Then 'JFK'
       When 'SOUTH' Then 'ATL'
       When 'WEST'  Then 'LAX'
       When 'NORTH' Then 'CHI' End HubPoint
From table1 T1
Where column3 In 
     (Select Top(1) column4
      From table2 T2
         Join table3 T3
            On T2.column1 = T3.column1)

Format the code in whatever manner makes it the most readable...

link|flag
vote up 0 vote down

Yeah, this is pretty subjective...But here's my 2 cents:

SELECT
   Column1,
   Column2
FROM Table1
WHERE 
   Column3 IN (
      SELECT Column4
      FROM Table2
      JOIN Table3 ON
         Table2.Column1 = Table3.Column1
   )

But, really, I'd probably rewrite it without the IN:

SELECT
   Column1,
   Column2
FROM Table1
JOIN Table2 ON
   Table1.Column3 = Table2.Column4
JOIN Table3 ON
   Table2.Column1 = Table3.Column1

Basically, my rules are:

  • Capitalize Keywords
  • Columns go on individual lines, but SELECT modifiers (SELECT TOP 100, SELECT DISTINCT, etc.) or single columns (SELECT 1, SELECT Id, SELECT *, etc.) go on same line
  • Join conditions indented underneath JOIN clause
  • Use JOIN for INNER JOIN (since it's the common one), and fully specify others (LEFT OUTER JOIN, FULL OUTER JOIN, etc.)
  • Open parens on same line, close paren on seperate line. If you have an alias, the alias goes with close paren.
link|flag
Capitalize Keywords doesn't work on PostGresql, they will require to be in "" because it's case sensitive. Watch out the type of DB. – Daok Nov 7 '08 at 15:02
The docs don't seem to mention that quirk - and even have captialized keywords in the example: postgresql.org/docs/8.0/… – Mark Brackett Nov 7 '08 at 19:38
vote up 1 vote down

Well, of course it depends on the query.

For simple queries, a highly formal indentation scheme is just more trouble than it's worth and can actually make the code less readable, not more. But as complexity grows you need to start being more careful with how you structure the statement, to make sure it will be readable again later.

link|flag
vote up 1 vote down

I like to have the different parts of my query line up vertically. I tend to use a tab size of 8 spaces for SQL which seems to work well.

SELECT  column1, 
        column2
FROM    table1
WHERE   column3 IN
(
        SELECT TOP(1) column4
        FROM    table2
        INNER JOIN table3
        ON      table2.column1  = table3.column1
)
link|flag
vote up 0 vote down

This is a matter of taste.

This is my preference.

SELECT 
  column1
 ,column2
FROM
  table1
WHERE column3 IN (
                 SELECT TOP(1) column4
                 FROM 
                   table2
                   INNER JOIN table3
                 ON table2.column1 = table3.column1
                 )
link|flag
vote up 1 vote down

This is my normal preference:

....SELECT column1
........,column2
....FROM table1
....WHERE column3 IN (
........SELECT TOP(1) column4
........FROM table2
........INNER JOIN table3
............ON table2.column1 = table3.column1
....)

Although stackoverflow messes up the formatting with an extra leading space, so I put in some periods so you can see the actual formatting...

link|flag
vote up 4 vote down

I like to have "rivers" of white space in the code. It makes it a little easier to scan.

SELECT column1,
       column2
  FROM table1
 WHERE column3 IN (SELECT column4
                     FROM table2
                     JOIN table3
                       ON table2.column1 = table3.column1);
link|flag
vote up 0 vote down

I don't know if there's a standard but I like to do it this way;

SELECT column1, column2
  FROM table1
WHERE column3 IN
(
    SELECT TOP(1) column4
      FROM table2
    INNER JOIN table3
      ON table2.column1 = table3.column1
)

because I can read and analyze the SQL better.

link|flag
vote up 1 vote down

I would format like this:

SELECT
    column1, 
    column2
FROM 
    table1
WHERE 
    column3 IN (SELECT TOP(1) 
                    column4 
                FROM 
                    table2 
                    INNER JOIN table3 ON table2.column1 = table3.column1)
link|flag
vote up 2 vote down

Of course, this comes down to personal preference. And if in a team setting, it's something that should be agreed upon among the members for consistency's sake. But this would be my preference:

SELECT column1, column2
FROM   table1
WHERE  column3 IN(SELECT     TOP(1) column4
                  FROM       table2
                  INNER JOIN table3 ON
                             table2.column1 = table3.column1
                 )
link|flag
vote up 0 vote down

What I usually do is,

print("SELECT column1, column2
       FROM table1
       WHERE column3 IN (SELECT TOP(1) column4
                         FROM table2 INNER JOIN 
                              table3 ON table2.column1 = table3.column1)");
link|flag
vote up 8 vote down

Not sure there is an accepted practice, but here's now how I'd do it:

SELECT 
    column1, 
    column2 
FROM 
    table1 
WHERE 
    column3 IN 
    ( 
     SELECT TOP(1) 
         column4 
     FROM 
         table2 
         INNER JOIN 
         table3 
             ON table2.column1 = table3.column1 
    )
link|flag
vote up 10 vote down
SELECT column1, column2
FROM table
WHERE column3 IN (
    SELECT TOP(1) column4
    FROM table2
    INNER JOIN table3 ON table2.column1 = table3.column1
)

This is pretty short and easy to read. I'd make adjustments if there were more columns selected or more join conditions.

link|flag
That's the same indenting scheme I like to use. – Justice Nov 7 '08 at 14:35
A lot of text books use this or something very similar. I like to keep it simple. :) – Bill the Lizard Nov 7 '08 at 14:41
I would tend to go for this style personally, except I would drop the opening ( on to a new line. – MagicAndi Nov 7 '08 at 14:42
I wouldn't change it if I found the opening ( on its own line. :) – Bill the Lizard Nov 7 '08 at 15:38
Yes, a new line for every major keyword, nested sections indented. I don't like all the scrolling up and down when long lists of column names are on separate rows. I want to see as much as possible on one screen. – DOK Nov 7 '08 at 15:42
vote up 2 vote down

This is my personal method. Depending on the length of the join condition I sometimes indent it on the line below.

SELECT
  column1,
  column2
FROM
  table1
WHERE
  column3 IN ( 
    SELECT TOP(1)
      column4
    FROM
      table2
      INNER JOIN table3 ON table2.column1 = table3.column1
  )


SELECT
  column1,
  column2
FROM
  table1
WHERE
  column3 IN ( 
    SELECT TOP(1)
      column4
    FROM
      table2
      INNER JOIN table3
        ON table2.column1 = table3.column1 -- for long ones
  )
link|flag
This (Jason's way) is how I do it. Clause keywords in their own column, on their own line. Clause components indented. Comma-separated or boolean-separated lists are one line per item. Open parentheses on the same line (not on their own lines). – Pistos Nov 7 '08 at 16:40

Your Answer

Get an OpenID
or

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