Is there any widely used SQL coding standard out there? SQL is little bit different from C/C++ type of programming languages. Really don't know how to best format it for readability.
|
12
|
|
|
|
|
|
Wouldn't call it coding standard - more like coding style
|
||||||||
|
|
|
If you google, there are plenty of coding standards out there. For example, Database Coding Standard and Guideline and SQL SERVER Database Coding Standards and Guidelines Complete List |
||
|
|
|
|
I generally keep very little per line, ie:
|
||
|
|
|
|
I like the comma preceding way:
it makes it the easiest to read and debug in my opinion. |
||||||
|
|
|
Google for sql pretty printer or look here. I haven't tried it out myself, but it gives you a good start. Most commercial tools like Toad have a "formatting" option which helps, too. |
||
|
|
|
|
Play around with www.sqlinform.com - I recommend using the ANSI-92 standard, and then pretty it up with that site. |
||
|
|
|
|
From a really very nice blog on PostgreSQL, but this topic is applicable in general: Maintainable queries - my point of view (depesz.com)
I do agree with capitalization of reserved words and every other identifier, except my own. |
||||||
|
|
|
I personally don't like to prefix a stored procedure name with sp_ - it is redundant, IMO. Instead, I like to prefix them with a "unit of functionality" identifier. e.g. I'll call the sprocs to deal with orders order_Save, order_GetById, order_GetByCustomer, etc. It keeps them all logically grouped in management studio and makes it harder to pick the wrong one. (GetOrderByProduct, GetCustomerById, etc...) Of course, it is personal preference, other people may prefer to have all the Get sprocs together, all the Save ones, etc. Just my 2c. |
||||
|
|
|
This works pretty good for us. This actual query doesn't make much sense since I tried to build it quickly as an example... but that's not the point.
|
|||
|
|
|
|
I know this is long, but bear with me, it's important. This question opened a cool can of worms. And if you don't like database blocks, read on. And, before anyone thinks about knocking down my response, please see the following article and connected articles to it about locking, and recompiles; two of the most damaging resources hits on a SQL database. http://support.microsoft.com/kb/263889 I can type pretty quickly, and I don't like to type any more than the next person. But the points below I follow extremely closely, even if it is more typing. So much that I've built my own SP apps to do it for me. The points I bring up are really important! You might even say to yourself, "are you kidding, that's not an issue", well, then you didn't read the articles above. AND, it's totally moronic that M$ would put these points in as NOTEs. These issues to me should be BOLD and SCREAMING. I also do a lot of coding to build my basic scripts using C# applications to speed up development and these practices are very sound (10 years worth) to make scripting SPs easier and especially faster. There are more than this, but this is what I do for the first 60% of everything. Best practices
Preferences
Select
Update
Insert
OR
Delete
|
||
|
|
|
|
Anything in blue is upper case SELECT, DELETE, GO, etc Table names are singular like the table that holds our customers would be the customer table Linking tables are tablename_to_tablename use _ between works in table names and parameters example BEGIN |
||
|
|
|
|
|
||
|
|
