vote up 12 vote down star
4

I AM SO TIRED OF READING THE WHOLE SQL STATEMENT / STORED PROCEDURE IN FULL CAPS. WHAT THE HELL WERE THE INITIAL DEVELOPERS THINKING?

What's the best style (in terms of cap, indentation, lines breaks, etc) to write SQL in?

flag

32% accept rate
I don't think there's any need to have this in caps? – Mez Sep 22 '08 at 23:53
@Martin. I think so. It conveys his point rather well. – GateKiller Sep 23 '08 at 0:00
Gatekiller... I don't know - glancing at it briefly, it flagged in my mind straight away as "SPAM!!!" (spelling errors, "WHAT THE HELL" etc etc... – Mez Sep 23 '08 at 0:01
Got your attention though, eh? I know - i showed up with my cursor already speeding toward "offensive"... but then i read it. ;-) – Shog9 Sep 23 '08 at 0:11
Exactly, gentlemen. we need to crusade for the elimination of all cap in SQL queries :) – Haoest Sep 23 '08 at 0:26

22 Answers

vote up 0 vote down

I'd format your example like this:

SELECT
    f.foo  
    , b.bar  
    , CASE
    	WHEN f.foo = 'hello' THEN 'goodbye'      
    	ELSE b.bar    
      END as something_calculated  
    , some_long_expression
FROM 
    fooz f  
    JOIN baz b ON f.baz_id = b.id
WHERE 
    b.bar IS NOT NULL  
    AND f.foo <> 'something random'

Although I can take or leave the commas at the start of each of the SELECT items, rather than at the end. The whole argument about it being easy to comment out this way is true, but how useful is it really. After all, we don't program by trial and error, right?

link|flag
It's useful at the time of writing the sql when you want to peek into other columns for context. – Haoest Oct 21 '08 at 16:14
vote up 0 vote down

As you can see from the answers here, there is no one style that is 'best'.

Probably most important is consistency within your team in whatever you decide. And in reality, you should be spending your time on WHAT you are writing as opposed to how it looks.

To those ends, you should use a formatting tool like SQLInform or SQL Refactor after any changes to your scripts.

SQLInform is free and terrific. I use SQL Refactor, though, because it integrates into Mgt. Studio and is two keystrokes away from beauty. Truth be told, most everything from Red-Gate software is gold.

Both allow you to decided on what styles you wish to apply.

link|flag
vote up 2 vote down

I guess I have invented my own style. I like SELECT, FROM, JOIN, WHERE, ORDER BY all at position 1 on new lines, 2 spaces of indent, caps for most T-SQL reserved words, brackets around all field names, and a general attempt to align everything else that I can. What do you think of it?

SELECT
  t1.[Field1] [FirstAlias],  
  t2.[Field2] [SecondAlias],  
  t3.[Field3] [ThirdAlias],
  t2.[F1]     [FourthAlias],
  t2.[F2]     [FifthAlias],
  t2.[F3]     [SixthAlias]
FROM
  dbo.Table1 t1
INNER JOIN
  dbo.Table2 t2 ON t1.[Field1] = t2.[F1]
WHERE  
  t1.[Field1] =    'foo'    AND  
  t2.[F2]     =    'baroo'  AND  
  t1.[Field3] LIKE 'bubba%'
ORDER BY
  t2.[F3]     DESC,
  t1.[Field1] DESC
link|flag
vote up 0 vote down

Why use uppercase keywords in SQL?

The tools do it (at least MS SSMS does).

link|flag
How can you make SSMS do this? – jandersson Jan 21 at 21:10
Right click on a table in the object browser. Select "Script as Insert To New Tab". Observe the code generation. – David B Jan 22 at 5:10
vote up 0 vote down

It doesn't matter which style you select, but select one. Better yet, use a SQL formatter. There are free web-based ones that you can use. I would advise against putting comments directly into your SQL statement because of 2 things 1) not every development tool understands things like

select 6 --mycomment

      -5 from dual;

2) someday you may want to run all the code in your shop through a formatter. Imbedded comments will really mess things up.

Last bit of advice; leave good enough alone. Once you have the code in a 'reasonably understandable' format, don't obsess over it. Focus on the optimal use of your time which is probably to move on to the next project. Of course, 'good enough' is always subjective.

link|flag
vote up -2 vote down

With style, consistency is more important than the specifics of the style you choose. If you're looking for style opinions, I agree with bentilly.blogspot.com about most of the style he's described, with the following differences:

1 - Go ahead and indent the very first SELECTed item just like the others

2 - Why put spaces after your commas?

3 - I much prefer JOIN conditions in the WHERE clause.

4 - I use a slightly different indentation on my CASE statements

So to reformat his example:

SELECT 
  f.foo
 ,b.bar
 ,CASE WHEN f.foo = 'hello'
       THEN 'goodbye'
       ELSE b.bar
  END as something_calculated
 ,some_long_expression
FROM
  fooz f
 ,baz b
WHERE f.baz_id = b.id
  and b.bar IS NOT NULL
  AND f.foo <> 'something random'
link|flag
why eek? . – JosephStyons Oct 22 '08 at 19:26
Advice #1 - good; #2 - very bad (only aggravates readability); #3 - very very bad; #4 - neutral (good in simple cases). Overall: eeeek! :-) – Yarik Oct 31 '08 at 8:31
@Yanik, why is #3 so very, very bad? /Adam – Adam Asham Dec 31 '08 at 2:39
Because it is not clear, immediately, what the intention of the query is. Multiple sources in a from-clause typically imply a cartesian-cross-join, whereas the intention is, in this example, an inner-join. – Justice Jan 25 at 5:10
vote up 0 vote down

Readability and clarity of code is the most important for me. If SELECT is better for some than Select, then it's their choice. But personally everything in Caps looks wrong to me.

My style for writing SQL :

  • Every Keyword begins with Caps but thereafter has small letters
 Select * From 
  • All the tables name begin with tbl and stored procs begin with sp.New words first letter being in caps. (this is more to do with namings and notations conventions)
 tblCustomerAccount
 spCustomerNameSelect
  • Proper indentation of the code.
link|flag
vote up 5 vote down

My style:

Indents, commas at the end of fields (in front looks like crap - and just moves the "missing comma" to the first field rather than the last one), vertical lineup, single line per element, extra whitespace, comments - all for the primary goal of readability. Code is for people to read, not compilers.

select
   it.field1                        as Field1_Name,
   it.field2                        as Field2_Name,
   it.field3                        as Field3_Name,
   st.field4                        as Field4_Name,
   st.field5                        as Field5_Name,
   tt.field6                        as Field6_Name,
   isnull(it.field4,0)/it.field5    as Calc_Name,

   -- Whitespace and comment if necessary for clarity
   case tt.field8
      when 1 then 27
      when 3 then 42
      else 100
   end                              as Short_Case_Name,

   -- Whitespace and comment if necessary for clarity
   case tt.field9
      when 'Multi-polymorphiotic' 
         then 27
      when 'Quasi-polymorphiotic'
         then 42
      else
         'Mega-polymorphiotic'
   end                              as Long_Case_Name
from
   IntialTable it

   -- Comment if necessary
   JOIN SecondaryTable st
      on ( st.idField = it.idField )

   -- Comment if necessary
   JOIN TertiaryTable tt
      on ( tt.idField = st.idField 
           and tt.otherField = st.otherField )
where
   it.field1 = 'foo'

   -- Group conditions from the same table together for clarity, comment if needed
   and st.field1 = 1
   and st.field2 = 2

   -- Whitespace between groups for readability
   and tt.field1 = 'blah'

My coworkers think I'm a nut-ball, but they love working on my code. :-)

Ron

link|flag
Not ideal for my taste, but very very close... :-) – Yarik Oct 31 '08 at 8:25
Do you indent with spaces or tab? =p – Yada Nov 19 at 22:28
vote up 1 vote down

I also prefer having commands, functions and other reserved words in capitals, with identifiers in lowercase.

It's helpful to be able to spot the difference, especially if you're keying or reading chunks of SQL in a primitive client which doesn't offer any syntax highlighting.

Since I usually adhere to this convention where possible, for my part, oddly malformed SQL sticks out like a sore thumb.

link|flag
vote up 1 vote down

Some good tips, I agree with the commentors who uppercase all SQL keywords lowercase all table- and column-names.

I generally indent much like @bentilly above, including the leading commas, but I usually have the JOIN and ON on the same line. Also, this is always only in the SQL IDE; when placing SQL in code (in pre-Linq days) I typically make one long statement. The broken-up style breaks up my code too much and, (IMO) makes it harder to read.

EDIT: I have to admit, though, that when I'm typing SQL in the MySQL command-line client for quick smoke-testing, I usually use all lower-case. Just for speed, I guess; never really thought about it. I always maintain the casing as mentioned above for inclusion in my code, though.

link|flag
vote up 2 vote down

I break everything down per line, then it's easy to add/remove/comment-out lines w/o needing to edit other lines:

select t1.col1
     , t2.col2
     , t2.col3
from table1 t1
   , table2 t2
where t1.col1 = t2.col2
  and t2.col2 is not null
;

fewer typos, quicker iterations.

link|flag
vote up 12 vote down

Style is the original programming holy war. However here is my style

SELECT f.foo
  , b.bar
  , CASE
      WHEN f.foo = 'hello'
      THEN 'goodbye'
      ELSE b.bar
    END as something_calculated
  , some_long_expression
FROM fooz f
  JOIN baz b
    ON f.baz_id = b.id
WHERE b.bar IS NOT NULL
  AND f.foo <> 'something random'

I have reasons for virtually every part of this style. For example the leading commas in the SELECT make it easier for me to later on add a column. The indentation of the CASE statement allows me to stay within 80 columns and make my code skimmable. I like the way that a 2 space indent with the AND makes the WHERE expressions line up. And so on and so forth. (I care about this because my job essentially boils down to, "Write a ton of very complex SQL statements for reports, and maintain those reports.")

Ironically one of the exceptions to the rule that I have reasons for things I do is the capital key words. I only do that out of established habit.

link|flag
There's another great reason to start with a comma in a select list, or a logical operator in a where clause: you can easily add or comment out any single column/criteria without much (if any) change to the rest of the query. – Haoest Sep 23 '08 at 0:23
I personally find this very hard to read...but as you said, it's a holy war :) – Swati Sep 23 '08 at 0:30
The ability to add or comment out columns and criteria is important for me because I'm usually really writing a template where, depending on the report parameters, specific bits might be included. – bentilly Sep 23 '08 at 0:42
That's not really true.. leading commas allow you to easily comment out the last column but not the first column, vice versa for trailing commas. – Dexter Sep 23 '08 at 0:49
I use a very similiar style (I like more than two space margins). – Nathan Koop Sep 23 '08 at 2:40
show 4 more comments
vote up 0 vote down

I write SQL in all lowercase because it's easier to type, and case the field and tablenames according to how they are cased in the definition, just in case someone flips on the ole "case matters" flag in your favorite SQL implementation.

link|flag
vote up 1 vote down

There is a reason why uppercase is relatively rare in printed texts: typographers use more legible glyphs (lowercase) for the main text body. Caps are reserved for special occasions. And ALLCAPS is plain annoying to read and to type.

link|flag
vote up 1 vote down

I believe certain ANSI and ISO standards require the use of upper case to conform to the standard. Technically, the SQL keywords/commands really are in upper-case, although they are allowed to be used in any case if you don't need to conform to a standard. So, it is not really always a matter of style and personal choice.

Also, as far as database object names go, if the database is using a case-sensitive collation then those are required to match the case of the database object (meaning if they are in upper case then you're queries must also include those names in upper case.

link|flag
vote up 3 vote down

The all-CAPS convention for reserved words is pretty useful in my opinion. When you are composing complex (re: very) queries, the CAPS differentiating the operators from the domain text (table, column names etc.) can be a deal-breaker for maintenance.

Also, if there's a possibility that others might need to read your code and understand it, be considerate and use the most common convention for their sake if nothing else.

link|flag
Fortunately, i keep at least one syntax-highlighting editor ready at hand... – Shog9 Sep 23 '08 at 0:13
vote up 4 vote down

I am not too fussed about caps, although I admit I do make my keyword commands (select, from, where insert) capitals. I can be very anal about tabbing and line breaks though. My preferred style is to keep things like select statements in blocks that are lined up....

SELECT   [Name]
FROM     [tablename]
WHERE    [column1] = [value1]
AND      [column2] < [value2]

Please pretend that the space between items (such as "select" and "[name]") have been done with tabs rather than spaces. :)

link|flag
this is nice to read but a lot of maintenance. – Yada Nov 19 at 22:29
vote up 1 vote down

The style is really up to you. Caps dont bother me, but everyone is different.

link|flag
vote up 0 vote down

CAPS suck.

I use lowercase only for my SQL. It feels much neeter then.

link|flag
I'm a fan of lower case too. Let IDE code highlighter do the work. – Yada Nov 19 at 22:26
vote up 2 vote down

I Write All My SQL Code In PascalCase. EG:

Declare @DatabaseName sysname
Declare @SQLCommand varchar(1024)
Declare curDBName Cursor For

Select
[Name]
From
Master..Sysdatabases
Where
[Name] Not In ('tempdb')
link|flag
It's pretty readable :) i like – Haoest Sep 23 '08 at 0:17
1  
Welcome to Visual Basic for Databases. Yikes. – Justice Jan 25 at 4:50
vote up 4 vote down

I don't get the CAPS thing either. I write a lot of sql and it's all lower case. Syntax highlighting does a good enough job of making different things stand out. No need for caps.

link|flag
vote up 6 vote down

I like SQL commands in all caps and column names and such in lowercase. I don't know if that's the "best" style, but it helps when I need to add or remove columns from a query or add in new clauses.

Also, I prefer line breaks between most commands, so having the caps helps there too; if I see caps way out in a line, I probably forgot to add the break.

link|flag

Your Answer

Get an OpenID
or

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