What are the (various) best practices/opinions for table/column/constraint naming?

From: Ken Johanson <pg-user(at)kensystem(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: What are the (various) best practices/opinions for table/column/constraint naming?
Date: 2008-02-08 21:04:37
Message-ID: 47ACC3E5.2060207@kensystem.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I'd like to see a list o t he various approaches, and a poll as to which
are best and why, for naming table and columns and constraints. We've
all seen several variations, but the most common (and pg used) seems to be:

columns:
primary key: <table-name>_pk OR <table-name>_id OR <table-name>_rowid
foreign key: <foreign-table-name>_fk OR <foreigh-table-name>_join

indexes:
<table-name>_<column_name>_idx

sequences:
<table-name>_<column_name>_seq

constraints:
<table-name>_<column_name>_req OR <table-name>_<column_name>_constr (etc)

The most used variations seem to be removing the '_', and/or to remove
the table/column prefix from objects where it is implied (when there is
seen to be no point trying to make the names unique, e.g when a label is
needed):

columns:
primary key: pk

example:
SELECT person.pk [AS person_id], person.named, company.pk, company.named
FROM contact AS person
JOIN contact AS company ON person.companyid=company.pk

Other variations suggest putting the type at the start of the object name:

columns:
primary key: pk_<table-name> etc
foreign key: fk_<foreign-table-name> etc

And other names which don't necessarily represent constraints or indexes
and are only meaningful to the apps:

columns:
<name>_id (integer numbers or alpha-num, abstract/machine meaningful:
uuids, base-36 etc)
<name>_no (integer numbers, human meaningful)
<name>_nm OR <name>_name (named value, e.g user_name, app_name, etc)
<name>_date OR <name>_ts (datetime/timestamp, e.g created_date,
modified_date etc)
<name>_info (informational value)

And other naming conventions suggest using mixed/camel case
(quoted-identifiers) instead of '_' delimiters, or no delimiters at all...

Has anyone seen articles or iso/ansi endorsed best-practices for naming,
or otherwise have an opinion about the variations?

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Karsten Hilbert 2008-02-09 10:58:35 Re: What are the (various) best practices/opinions for table/column/constraint naming?
Previous Message Pascal Tufenkji 2008-02-08 14:54:07 Re: Postgres roles