Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a unique ID for each record based on the date the record is created. Example, if the record is created today, I want the key to be 20101130XX where XX would be a sequential list of numbers such as 01, 02, 03 etc... in case more than one person creates a record today.

If 3 people created records yesterday their unique IDs would be

2011032700 2011032701 2011032702

and then midnight comes and someone creates a new record it would be

2011032800

The purpose of this is to give each record a unique ID that will be used to reference the ticket.

We are already using the date format, but currently users are having to manually enter the id and that can create errors such as 2012032700 when it should have been 2011032700 so instead of putting 2011 they put 2012

I am just not sure how to create a trigger to generate this type of unique ID and would appreciate any assistance

share|improve this question
1  
Why not add seconds to the date as well? That way you don`t need the sequential numbering. – Elad Lachmi Mar 28 '11 at 6:37
8  
@Elad, what happens when you get two tickets created during the same second? And you, @user, what happens when you get more than 99 tickets in a single day? – Charles Mar 28 '11 at 6:38
Oh... Sorry, I was sure you added the hours and minutes already. Well, you can add the hours and minutes and seconds and also miliseconds, if seconds are not granular enough. – Elad Lachmi Mar 28 '11 at 6:41
1  
What is the benefit of using that as an id? Why not use simple auto increment id, and avoid all collsion possibilities. Not worth the effort, I think. – Mārtiņš Briedis Mar 28 '11 at 6:42
@Briedis: I was thinking this serves a double perpos. It is both a timestamp and a unique ID. – Elad Lachmi Mar 28 '11 at 6:45
show 2 more comments

4 Answers

From dev.mysql.com: example-auto-increment.html

For MyISAM and BDB tables you can specify AUTO_INCREMENT on a secondary column in a multiple-column index. In this case, the generated value for the AUTO_INCREMENT column is calculated as MAX(auto_increment_column) + 1 WHERE prefix=given-prefix. This is useful when you want to put data into ordered groups.

So, make 2 columns on the table, one dateEntered and one (auto_incremented) id, like this:

CREATE TABLE yourTable (
    dateEntered DATE NOT NULL,
    id INT NOT NULL AUTO_INCREMENT,
    name CHAR(30) NOT NULL,
    PRIMARY KEY (dateEntered, id)
) ENGINE=MyISAM;

If you don't use ISAM but InnoDB, I think you'll have to write your own trigger that implements this behaviour.

share|improve this answer
I like this. Will put to good use right now :) – Elad Lachmi Mar 28 '11 at 6:47
1  
With this approach, you can present the final ticket number to the user through sprintf's ability to zero-pad data. $ticket_number = sprintf('%s%05d', $pre_transformed_date, $foo['id']); will format the ticket number like '2011032700001', given that you've already converted the date to that format. – Charles Mar 28 '11 at 6:52
@Charles: Yes, you can then format the (output of) unique id, either in PHP or in SQL. – ypercube Mar 28 '11 at 7:02

This approach simply won't work because @Charles is true. You can't rely on a timestamp because there's a chance of duplicates (collision).

Create a simple autoincrement id then save the timestamp too and you'll be happy.

share|improve this answer
Sorry, no chance two rows are created @ the same milisecond. – Elad Lachmi Mar 28 '11 at 6:43
2  
@Elad, MySQL doesn't store milliseconds in the native DATETIME type (or any type, for that matter), thus permitting a collision. (It can calculate them internally, it just can't store them.) – Charles Mar 28 '11 at 6:45
Ok. Didn`t know that. Guess your right then. – Elad Lachmi Mar 28 '11 at 6:46
1  
never say never :) I wrote my opinion about i don't like to rely on an uncontrollable variable when i'd like to use it for some special purpose. – fabrik Mar 28 '11 at 6:46

What will you do if the number of entries per day exceeds 99? If you strongly want to use "20101130XX" index, I would recommend you use a compound key:

CREATE TABLE `test` (
  `date` date NOT NULL,
  `id` tinyint(4) NOT NULL,
  `other_fields` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`date`,`id`)
);
share|improve this answer
but how can I change id to 00 on next date – php_learner Mar 28 '11 at 10:08

Just use microtime() to be sure that there are no duplicate entries.

function getUniqueID() {
  $mt = explode(' ', microtime());
  return $mt[1] . substr($mt[0], 2, 7);
  }

P.S. You can always use lower precision then 7 digits.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.