Database, Table and Column Naming Conventions? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T15:30:16Z http://stackoverflow.com/feeds/question/7662 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions 24 Database, Table and Column Naming Conventions? GateKiller 2008-08-11T10:27:22Z 2009-02-19T01:54:14Z <p>When ever I design a database, I always wonder if there is a best way of naming an item in my database. Quite often I ask myself the following questions:</p> <ol> <li>Should table names be plural?</li> <li>Should column names be singular?</li> <li>Should I prefix tables or columns?</li> <li>Should I use any case in naming items?</li> </ol> <p>Are there any recommend guidelines out there for naming items in a database?</p> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7663#7663 8 Answer by Lars Mæhlum for Database, Table and Column Naming Conventions? Lars Mæhlum 2008-08-11T10:35:10Z 2008-08-11T10:35:10Z <ol> <li>No. A table should be named after the entity it represents. Person, not persons is how you would refer to whoever one of the records represents.</li> <li>Again, same thing. The column FirstName really should not be called FirstNames. It all depends on what you want to represent with the column.</li> <li>NO.</li> <li>Yes. Case it for clarity. If you need to have columns like "FirstName", casing will make it easier to read. <br /> <br /> Ok. Thats my $0.02</li> </ol> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7667#7667 7 Answer by Matt Hamilton for Database, Table and Column Naming Conventions? Matt Hamilton 2008-08-11T10:49:03Z 2009-02-19T01:54:14Z <p>Ok, since we're weighing in with opinion:</p> <p>I believe that table names should be plural. Tables are a collection (a table) of entites. Each row represents a single entity, and the table represents the collection. So I would call a table of Person entities People (or Persons, whatever takes your fancy).</p> <p>For those who like to see singular "entity names" in queries, that's what I would use table aliases for:</p> <pre><code>SELECT person.Name FROM People person </code></pre> <p>A bit like LINQ's "from person in people select person.Name".</p> <p>As for 2, 3 and 4, I agree with @Lars.</p> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7672#7672 2 Answer by Mario Marinato -br- for Database, Table and Column Naming Conventions? Mario Marinato -br- 2008-08-11T11:14:11Z 2008-08-11T11:14:11Z <p>I think the best answer to each of those questions would be given by you and your team. It's far more important to have a naming convention then how exactly the naming convention is.</p> <p>As there's no right answer to that, you should take some time (but not too much) and choose your own conventions and - <em>here's</em> the important part - stick to it.</p> <p>Of course it's good to seek some information about standards on that, which is what you're asking, but don't get anxious or worried about the number of different answers you might get: choose the one that seems better for you.</p> <p>Just in case, here are my answers:</p> <ol> <li>Yes. A table is a group of <em>records</em>, <em>teachers</em> or <em>actors</em>, so... plural.</li> <li>Yes.</li> <li>I don't use them.</li> <li>The database I use more often - Firebird - keeps everything in upper case, so it doesn't matter. Anyway, when I'm programming I write the names in a way that it's easier to read, like <em>releaseYear</em>.</li> </ol> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7677#7677 2 Answer by Bell for Database, Table and Column Naming Conventions? Bell 2008-08-11T11:24:50Z 2008-08-11T12:55:43Z <ol> <li>Definitely keep table names singular, person not people <ol> <li>Same here</li> <li>No. I've seen some terrible prefixes, going so far as to state what were dealing with is a table (tbl<em>) or a user store procedure (usp</em>). This followed by the database name... Don't do it! </li> <li>Yes. I tend to UpperCamelCase all my table names</li> </ol></li> </ol> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7678#7678 2 Answer by Keith for Database, Table and Column Naming Conventions? Keith 2008-08-11T11:27:56Z 2008-08-11T11:34:25Z <p>My opinions on these are:</p> <p>1) No, table names should be singular.</p> <p>While it appears to make sense for the simple selection (<code>select * from Orders</code>) it makes less sense for the OO equivalent (<code>Orders x = new Orders</code>).</p> <p>A table in a DB is really the set of that entity, it makes more sense once you're using set-logic:</p> <pre><code>select Orders.* from Orders inner join Products on Orders.Key = Products.Key </code></pre> <p>That last line, the actual logic of the join, looks confusing with plural table names.</p> <p>I'm not sure about always using an alias (as Matt suggests) clears that up.</p> <p>2) They should be singular as they only hold 1 property</p> <p>3) Never, if the column name is ambiguous (as above where they both have a column called [Key]) the name of the table (or its alias) can distinguish them well enough. You want queries to be quick to type and simple - prefixes add unnecessary complexity.</p> <p>4) Whatever you want, I'd suggest CapitalCase</p> <p>I don't think there's one set of absolute guidelines on any of these. </p> <p>As long as whatever you pick is consistent across the application or DB I don't think it really matters.</p> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7687#7687 -1 Answer by Lord Future for Database, Table and Column Naming Conventions? Lord Future 2008-08-11T11:46:05Z 2008-08-11T11:46:05Z <pre><code> --Example SQL CREATE TABLE D001_Students ( StudentID INTEGER CONSTRAINT nnD001_STID NOT NULL, ChristianName NVARCHAR(255) CONSTRAINT nnD001_CHNA NOT NULL, Surname NVARCHAR(255) CONSTRAINT nnD001_SURN NOT NULL, CONSTRAINT pkD001 PRIMARY KEY(StudentID) ); CREATE INDEX idxD001_STID on D001_Students; CREATE TABLE D002_Classes ( ClassID INTEGER CONSTRAINT nnD002_CLID NOT NULL, StudentID INTEGER CONSTRAINT nnD002_STID NOT NULL, ClassName NVARCHAR(255) CONSTRAINT nnD002_CLNA NOT NULL, CONSTRAINT pkD001 PRIMARY KEY(ClassID, StudentID), CONSTRAINT fkD001_STID FOREIGN KEY(StudentID) REFERENCES D001_Students(StudentID) ); CREATE INDEX idxD002_CLID on D002_Classes; CREATE VIEW V001_StudentClasses ( SELECT D001.ChristianName, D001.Surname, D002.ClassName FROM D001_Students D001 INNER JOIN D002_Classes D002 ON D001.StudentID = D002.StudentID ); </code></pre> <p>These are the conventions I was taught, but you should adapt to whatever you developement hose uses.</p> <ol> <li>Plural. It is a collection of entities.</li> <li>Yes. The attribute is a representation of singular property of an entity.</li> <li>Yes, prefix table name allows easily trackable naming of all constraints indexes and table aliases.</li> <li>Pascal Case for table and column names, prefix + ALL caps for indexes and constraints.</li> </ol> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7714#7714 6 Answer by Guy for Database, Table and Column Naming Conventions? Guy 2008-08-11T12:24:17Z 2008-08-11T15:16:55Z <p>I work in a database support team with three DBA's and our considered options are:</p> <ol> <li>Any naming standard is better than no standard.</li> <li>There is no "one true" standard, we all have our preferences</li> <li>If there is standard already in place, use it. Don't create another standard or muddy the existing standards.</li> </ol> <p>We use singular names for tables. Tables tend to be prefixed with the name of the system (or it's acronym). This is useful if the system complex as you can change the prefix to group the tables together logically (ie. reg<em>customer, reg</em>booing and regadmin_limits).</p> <p>For fields we'd expect field names to be include the prefix/acryonm of the table (i.e. cust_address1) and we also prefer the use of a standard set of suffixes ( _id for the PK, _cd for "code", _nm for "name", _nb for "number", _dt for "Date").</p> <p>The name of the Foriegn key field should be the same as the Primary key field. </p> <p>i.e. </p> <pre><code>SELECT cust_nm, cust_add1, booking_dt FROM reg_customer INNER JOIN reg_booking ON reg_customer.cust_id = reg_booking.cust_id </code></pre> <p>When developing a new project, i'd recommend you write out all the preferred entity names, prefixes and acronyms and give this document to your developers. Then, when they decide to create a new table, they can refer to the document rather than "guess" what the table and fields should be called.</p> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7715#7715 -1 Answer by winsql for Database, Table and Column Naming Conventions? winsql 2008-08-11T12:27:27Z 2008-08-11T12:38:12Z <p>Naming conventions allow the development team to design discovereability and maintainability at the heart of the project. </p> <p>A good naming convention takes time to evolve but once it’s in place it allows the team to move forward with a common language. A good naming convention grows organically with the project. A good naming convention easily copes with changes during the longest and most important phase of the software lifecycle - service management in production.</p> <p>Here are my answers:</p> <ol> <li>Yes, table names should be plural when they refer to a set of <em>trades</em>, <em>securities</em>, or <em>counterparties</em> for example.</li> <li>Yes.</li> <li>Yes. SQL tables are prefixed with tb<em>, views are prefixed vw</em>, stored procedures are prefixed usp_ and triggers are prefixed tg_ followed by the database name.</li> <li>Column name should be lower case separated by underscore. </li> </ol> <p>Naming is hard but in every organisation there is someone who can name things and in every software team there should be someone who takes responsibility for namings standards and ensures that naming issues like <em>sec_id</em>, <em>sec_value</em> and <em>security_id</em> get resolved early before they get baked into the project.</p> <p>So what are the basic tenets of a good naming convention and standards: -</p> <ul> <li>Use the language of your client and your solution domain</li> <li>Be descriptive</li> <li>Be consistent</li> <li>Disambiguate, reflect and refactor</li> <li>Don’t use abbreviations unless they are clear to everyone</li> <li>Don’t use SQL reserved keywords as column names</li> </ul> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7724#7724 14 Answer by urini for Database, Table and Column Naming Conventions? urini 2008-08-11T12:39:37Z 2008-08-11T12:39:37Z <p>I recommend checking out Microsoft's SQL Server sample databases: <a href="http://codeplex.com/SqlServerSamples" rel="nofollow">http://codeplex.com/SqlServerSamples</a></p> <p>The AdventureWorks sample uses a very clear and consistent naming convention that uses schema names for the organization of database objects.</p> <ol> <li>Singular names for tables</li> <li>Singular names for columns</li> <li>Schema name for tables prefix</li> <li>Pascal casing</li> </ol> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7764#7764 3 Answer by SQLMenace for Database, Table and Column Naming Conventions? SQLMenace 2008-08-11T13:13:58Z 2008-08-11T13:13:58Z <p>Take a look at ISO 11179-5: Naming and identification principles You can get it here: <a href="http://metadata-standards.org/11179/#11179-5" rel="nofollow" title="Power-Coder"><a href="http://metadata-standards.org/11179/#11179-5" rel="nofollow">http://metadata-standards.org/11179/#11179-5</a></a></p> <p>I blogged about it a while back here: <a href="http://sqlservercode.blogspot.com/2006/11/iso-11179-naming-conventions.html" rel="nofollow" title="Elance.com">ISO-11179 Naming Conventions</a> </p> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/7858#7858 3 Answer by Thomas Owens for Database, Table and Column Naming Conventions? Thomas Owens 2008-08-11T15:23:32Z 2008-08-11T15:23:32Z <p>In my opinion:</p> <ol> <li>Table names should be plural.</li> <li>Column names should be singular.</li> <li>No.</li> <li>Either CamelCase (my preferred) or underscore_separated for both table names and column names.</li> </ol> <p>However, like it has been mentioned, any convention is better than no convention. No matter how you choose to do it, document it so that future modifications follow the same conventions.</p> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/226710#226710 2 Answer by phasetwenty for Database, Table and Column Naming Conventions? phasetwenty 2008-10-22T17:05:31Z 2008-10-22T17:05:31Z <p>Here's a link that offers a few choices. I was searching for a simple spec I could follow rather than having to rely on a partially defined one.</p> <p><a href="http://justinsomnia.org/writings/naming_conventions.html" rel="nofollow">http://justinsomnia.org/writings/naming_conventions.html</a></p> http://stackoverflow.com/questions/7662/database-table-and-column-naming-conventions/229288#229288 4 Answer by onedaywhen for Database, Table and Column Naming Conventions? onedaywhen 2008-10-23T10:45:02Z 2008-10-23T10:45:02Z <p>I'm also in favour of a ISO/IEC 11179 style naming convention, noting they are guidelines rather than being prescriptive.</p> <p>See <a href="http://en.wikipedia.org/wiki/Data_element_name" rel="nofollow">Data element name on Wikipedia</a>:</p> <p>"Tables are Collections of Entities, and follow Collection naming guidelines. Ideally, a collective name is used: eg., Personnel. Plural is also correct: Employees. Incorrect names include: Employee, tblEmployee, and EmployeeTable."</p> <p>As always, there are exceptions to rules e.g. a table which always has exactly one row may be better with a singular name e.g. a config table. And consistency is of utmost importance: check whether you shop has a convention and, if so, follow it; if you don't like it then do a business case to have it changed rather than being the lone ranger.</p>