vote up 7 vote down star
1

The default seems to be upper case but is there really any reason to use upper case for keywords? I started using upper case because I was just trying to match what SQL Server gives me whenever I tried to create something, like a new stored procedure. But then, I feel terrible for my baby (5th) finger that always needs to hold down the SHIFT button so I stopped using upper case. Any reason why I should go back to upper case?

Edit: Thanks for the answers guys. I wasn't programming yet back in the days when COBOL was king so I wasn't aware of this. I'll stick with lower case from now on.

flag

Try the CAPS LOCK key. :) – MusiGenesis Nov 15 '08 at 4:27
I still have to turn on CAPS LOCK when i want to write keywords and then off when i'm not writing keywords and turn CAPS LOCK on again and so on and so on. It's just a hassle. – Hertanto Lie Nov 15 '08 at 7:36
CAPS wha... Oh, you mean my third Ctrl key? – Dave Sherohman Dec 4 '08 at 14:27
Ha!, just the post I was looking for. Favored. – Sung Meister Apr 7 at 15:30
IIRC, the funny thing is that if you check out the sp_ procedures in MSSQL, they're all in lower case. – Benjol Jul 29 at 5:38

11 Answers

vote up 11 vote down check

It's just a matter of style, probably originating in the days when editors didn't do code colouring.

I used to prefer all upper case, but I'm now leaning towards all lower.

link|flag
+1 I guess I wasn't the only one using all lowers for keywords. – Sung Meister Apr 7 at 15:33
I'd go with the assumption that it hoes back to the days when editors didn't do code colouring. – Benjol Jul 29 at 5:37
vote up 6 vote down

Gordon Bell's examples are not exactly correct; generally, only the keywords are highlighted, not the entire query. His second example would look like:


SELECT name, id, xtype, uid, info, status, 
base_schema_ver, replinfo, parent_obj, crdate, 
ftcatid, schema_ver, stats_schema_ver, type, 
userstat, sysstat, indexdel, refdate, version, 
deltrig, instrig, updtrig, seltrig, category, cache
FROM sysobjects
WHERE category = 0
AND xtype IN ('U', 'P', 'FN', 'IF', 'TF')
ORDER BY 1

I find this far easier to read, since the keywords stand out more. Even with syntax highlighting, I find the uncapitalized example much harder to read.

At my company, we go a little bit farther with our SQL formatting.


SELECT      name, id, xtype, uid, info, status, 
    		base_schema_ver, replinfo, parent_obj, crdate, 
    		ftcatid, schema_ver, stats_schema_ver, type, 
    		userstat, sysstat, indexdel, refdate, version, 
    		deltrig, instrig, updtrig, seltrig, category, cache
FROM sysobjects
LEFT JOIN systhingies ON
    sysobjects.col1=systhingies.col2
WHERE category = 0
    AND xtype IN ('U', 'P', 'FN', 'IF', 'TF')
ORDER BY 1
link|flag
Yea, that is how I like it too. – David The Man Nov 16 '08 at 8:25
vote up 3 vote down

Try a formatting product (I use SQL Prompt/SQL Refactor from Red Gate). You can set how you want the capitalization to work, and your code will always be consistently formatted. Rest your pinky and let the computer do the work for you.

link|flag
vote up 3 vote down

PERSONALLY, I DON'T LIKE MY SQL YELLING AT ME. IT REMINDS ME OF BASIC OR COBOL.

So I prefer my T-SQL lowercase with database object names MixedCase.

It is much easier to read, and literals and comments stand out.

link|flag
It is so much a matter of taste. In my experience, the amount of yelling is not too great -- I prefer the upper-case keywords because it is much easier to read and literals and comments stand out. – Jonathan Leffler Nov 15 '08 at 6:30
1  
+1 for "I DON'T LIKE MY SQL YELLING AT ME" – Sung Meister Apr 7 at 15:29
vote up 2 vote down

I find it more readable. Same for having a newline for the beginning of each clause and indenting between clauses.

link|flag
vote up 1 vote down

Upper case can provide a gain in keyword visibility, but you can compensate with code highlight and indentation.
We use lower case because query editor and other tools do wonders in editing t-sql code, and we see no need to torture the little finger.

link|flag
vote up 1 vote down

Monkey see, monkey do for me. Pattern matching - if I do it the way I've seen it done, the structure of the clauses lines up mentally more easily.

link|flag
vote up 1 vote down

Uppercase is less readable. The outline of all words are shaped like boxes; there are no descenders or ascenders. Lowercase FTW!

link|flag
vote up 0 vote down

I think it stems from legacy systems. Parts of DB2 and COBOL, for example, are case sensitive. Resultantly, legacy DBA's and mainframe developers would just name things in all caps, which proceeded to just typing in all caps.

'course that's just how I see it, as the old crusty mainframers are the only ones I see doing it anymore.

link|flag
vote up 0 vote down

Other than conformity for conformitys sake, no. Although it's a very subjective topic, I prefer using mixed case for all SQL. The SQL is much easier to read, and nothing is lost in modern IDEs where keywords are all color-coded anyway.

link|flag
vote up 0 vote down

One of the reasons for continuing to use capitalization is when you(or someone else) are viewing code in something like notepad, it makes it easier to read. i.e. you can differentiate easily between the "keywords" and the tablenames, SP's, udf's etc

link|flag

Your Answer

Get an OpenID
or

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