Exists any naming guideline for naming columns at Sql Server? I searched at MSDN, but dont found anything, just for .Net
|
|
|
There are lots of different conventions out there (and I'm sure other answers may make some specific suggestions) but I think that the most important thing is that you be consistent. If you are going to use a prefix for something, use it everywhere. If you are going to have a foreign key to another table, use the same column name everywhere. If you are going to separate words with underscores, do that everywhere. In other words, if someone looks at a few tables, they should be able to extrapolate out and guess the names of other tables and columns. It will require less mental processing to remember what things are called. |
|||
|
|
|
There are many resources out there, but nothing that I have been able to truly pin down as a SQL Server specific set or anything published by Microsoft. However, I really like this list. Also, very important to NOT start out stored procedures with sp_ To be 100% honest though, the first part of my posted link is the most important. It must make sense for your organization, application, and implementation. |
|||
|
|
|
As always, google is your friend... |
|||||||
|
|
I find the following short list helpful:
|
|||
|
|