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?
|
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?
|
||||||||||
|
|
|
I'd format your example like this:
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? |
||
|
|
|
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. |
||
|
|
|
|
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?
|
||
|
|
|
|
Why use uppercase keywords in SQL? The tools do it (at least MS SSMS does). |
||||
|
|
|
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
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. |
||
|
|
|
|
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:
|
||||||||
|
|
|
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 :
|
||
|
|
|
|
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.
My coworkers think I'm a nut-ball, but they love working on my code. :-) Ron |
||
|
|
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. |
||
|
|
|
|
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. |
|||
|
|
|
|
I break everything down per line, then it's easy to add/remove/comment-out lines w/o needing to edit other lines:
fewer typos, quicker iterations. |
||
|
|
|
|
Style is the original programming holy war. However here is my style
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. |
||||||||||
|
|
|
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. |
||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||
|
|
|
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....
Please pretend that the space between items (such as "select" and "[name]") have been done with tabs rather than spaces. :) |
||
|
|
|
The style is really up to you. Caps dont bother me, but everyone is different. |
||
|
|
|
|
CAPS suck. I use lowercase only for my SQL. It feels much neeter then. |
||
|
|
|
I Write All My SQL Code In PascalCase. EG:
|
||
|
|
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. |
||
|
|
|
|
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. |
||
|
|