vote up 4 vote down star

Duplicate of: http://stackoverflow.com/questions/292026/is-there-a-good-reason-to-use-upper-case-for-t-sql-keywords

Simple question. I personally find a string of lowercase characters to be more readable than a string of uppercase characters. Is some old/popular flavor of SQL case-sensitive or something?

For reference:

select
    this.Column1,
    case when this.Column2 is null then 0 else this.Column2 end
from dbo.SomeTable this
    inner join dbo.AnotherTable another on this.id = another.id
where
    this.Price > 100

vs.

SELECT
    this.Column1,
    CASE WHEN this.Column2 IS NULL THEN 0 ELSE this.Column2 END
FROM dbo.SomeTable this
    INNER JOIN dbo.AnotherTable another ON this.id = another.id
WHERE
    this.Price > 100

The former just seems so much more readable to me, but I see the latter way more often.


EDIT: General consensus seems to be "subjective preference." Differentiating between keywords and other text is important, and UPPERCASING is one way of doing it. Color coding is another.

flag

I would argue making your keywords standout is not important. In SQL they come in a predictable order and tend to separate lists of things. See my answer below. – WW Mar 4 at 2:58
I would argue that it is important. It's the same reason you have color coding in your text editor: having a visual distinction increases readability. If I'm not worrying about what types I'm dealing with, I subconsciously ignore blue text, for example. – Stuart B Mar 4 at 5:57
How on earth did someone get 33+ upvotes for a duplicate to a question that was asked and answered over 3 months ago???: stackoverflow.com/questions/292026/… Something is very wrong with SO's search capability – Mitch Wheat Mar 4 at 6:11

11 Answers

vote up 35 vote down check

I think the latter is more readable. You can easily separate the keywords from table and column names, etc.

link|flag
Perhaps it's just habit, but I find the second version much more understandable. – Daniel Von Fange Mar 3 at 21:19
Agreed, 4th that. – Soviut Mar 4 at 5:45
1  
I"M NOT SURE IF THAT IS MORE READABLE :) – Learning Mar 4 at 5:48
I think it's interesting that SO doesn't do the same code highlighting when it's in caps. – invenetix Mar 4 at 6:05
@Learning THE fantastic.words WHICH ARE yours STAND OUT as_compared_to THE few AND often_patterned/repeated SQL WORDS In other words, the interest of the UPPERCASE convention is that SQL immutable keywords are easily identified, and look separate/different from your own identifiers and immediate values. This of course matters a bit less, nowadays with the omnipresent syntax hi-lighting in SQL IDEs / editors. This said, while this convention is a good thing for DML/DDL such as SELECT/INSERT queries and such, it can make for heavy look of Procedural extensions to SQL as in stored procs. – mjv Dec 9 at 4:34
vote up 13 vote down

Mostly it's tradition. We like to keep keywords and our namespace names separate for readability, and since in many DBMSes table and column names are case sensitive, we can't upper case them, so we upper case the keywords.

link|flag
MANY DBMS use case-sensitive table & columns names? I've never run into any (however 90% of my experience is MSSQL & Oracle) – James Curran Mar 3 at 21:31
A MSSQL server or database can be set to a case-sensitive collation. And yes, its very annoying. But required for some applications. – BradC Mar 3 at 21:35
Sybase servers have case sensitive names by default. – Learning Mar 4 at 5:33
So does MySQL, and for good and for bad (mostly bad:-), many developers first exposure to SQL is through MySQL. – Paul Tomblin Mar 4 at 13:41
vote up 2 vote down

It's just a matter of readability. Helps you quickly distinguish SQL keywords.

Btw, that question was already answered: http://stackoverflow.com/questions/153944/is-sql-syntax-case-sensitive

link|flag
vote up 2 vote down

I prefer using upper case as well for keywords in SQL.

Yes lower case is more readable but for me having to take extra second to scan through the query will do you good most of the time. Once it's done and tested you should rarely ever see it again anyway (DAL, stored proc or whatever will hide it from you).

If you are reading it for the first time, capitalized WHERE AND JOIN will jump right at you, as they should.

link|flag
vote up 13 vote down

I agree with you - to me, uppercase is just SHOUTING.

I let my IDE handle making keywords stand out, via syntax highlighting.

I don't know of a historical reason for it, but by now it's just a subjective preference.

Edit to further make clear my reasoning:

Would you uppercase your keywords in any other modern language? Made up example:

USING (EditForm form = NEW EditForm()) {
    IF (form.ShowDialog() == DialogResult.OK) {
       IF ( form.EditedThing == null ) {
          THROW NEW Exception("No thing!");
       }
       RETURN form.EditedThing;
    } ELSE {
       RETURN null;
    }
}

Ugh!

Anyway, it's pretty clear from the votes which style is more popular, but I think we all agree that it's just a personal preference.

link|flag
Seriously. The example may have been necessary, but it was kind of gross. – Justice Mar 4 at 6:05
vote up 3 vote down

I prefer lower case keywords. Management Studio color codes the keywords, so there is no problem distinguishing them from the identifiers.

And upper case keywords feels so... well... BASIC... ;)

-"BASIC, COBOL and FORTRAN called from the eighties, they wanted their UPPERCASE KEYWORDS back." ;)

link|flag
vote up 0 vote down

Apropos of nothing perhaps, but I prefer typesetting SQL keywords in small caps. That way they look capitalized to most readers, but they aren't the same as the ugly ALL CAPS style.

A further advantage is that I can leave the code as is and print it in the traditional style. (I use the listings package in LaTeX for pretty-printing code.)

link|flag
Interesting. Do you know any monospace fonts with small caps? Not only is all caps ugly, it is nigh unreadable when abused. – Adam Bernier Apr 5 at 3:50
vote up 0 vote down

I like to use upper case on SQL keywords. I think my mind skips over them as they are really blocky and concentrates on what's important. The blocky words split up the important bits when you layout like this:

SELECT
  s.name,
  m.eyes,
  m.foo
FROM
  muppets m,
  muppet_shows ms,
  shows s
WHERE
  m.name = 'Gonzo' AND
  m.muppetId = ms.muppetId AND
  ms.showId = s.showId

(The lack of ANSI joins is an issue for another question.)

There is a psychology study that shows lowercase was quicker to read than uppercase due to the outlines of the words being more distinctive. However, this effect can disappear about with lots of practice reading uppercase.

link|flag
vote up 1 vote down

Its just a question of readability. Using UPPERCASE for the SQL keywords helps make the script more understandable.

link|flag
vote up 1 vote down

Code has punctuation which SQL statements lack. There are dots and parentheses and semicolons to help you keep things separate. Code also has lines. Despite the fact that you can write a SQL statement on multiple physical lines, it is a single statement, a single "line of code."

IF i were to write english text without any of the normal punctuation IT might be easier if i uppercased the start of new clauses THAT way itd be easier to tell where one ended and the next began OTHERWISE a block of text this long would probably be very difficult to read NOT that id suggest its easy to read now BUT at least you can follow it i think

link|flag
vote up 0 vote down

Back in the 80s, I used to capitalize database names, and leave sql keywords in lower case. Most writers did the opposite, capitalizing the SQL keywords. Eventually, I started going along with the crowd.

Just in passing, I'll mention that, in most published code snippets in C, C++, or Java the language keywords are always in lower case, and upper case keywords may not even be recognized as such by some parsers. I don't see a good reason for using the opposite convention in SQL that you use in the programming language, even when the SQL is embedded in source code.

And I'm not defending the use of all caps for database names. It actually looks a little like "shouting". And there are better conventions, like using a few upper case letters in database names. (By "database names" I mean the names of schemas, schema objects like tables, and maybe a few other things.) Just because I did it in the 80s doesn't mean I have to defend it today.

Finally, "De gustibus non disputandum est".

link|flag

Your Answer

Get an OpenID
or

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