How to properly name record creation(insertion) datetime field ?

Posted by alpav on Stack Overflow See other posts from Stack Overflow or by alpav
Published on 2010-03-16T17:55:43Z Indexed on 2010/03/16 18:01 UTC
Read the original article Hit count: 393

If I create a table with datetime default getdate() field that is intended to keep date&time of record insertion, which name is better to use for that field ?

I like to use Created and I've seen people use DateCreated or CreateDate.

Other possible candidates that I can think of are: CreatedDate, CreateTime, TimeCreated, CreateDateTime, DateTimeCreated, RecordCreated, Inserted, InsertedDate, ...

From my point of view anything with Date inside name looks bad because it can be confused with date part in case if I have 2 fields: CreateDate,CreateTime, so I wonder if there are any specific recommendations/standards in that area based on real reasons, not just style, mood or consistency.

Of course, if there are 100 existing tables and this is table 101 then I would use same naming convention as used in those 100 tables for the sake of consistency, but this question is about first table in first database in first server in first application.

© Stack Overflow or respective owner

Related posts about sql

Related posts about naming