SQL PHP HTML ASP JavaScript articles and free scripts to download If you are facing any problem in viewing this page, please tell us
 

mysql_insert_id() to get the unique id created after insert command of a record


On many occasions we want to generate a unique ID from the operation we do on a database. For example take the case of generating a trouble ticket number in case of a help desk. Here a ticket number is generated while the record is inserted to the table. This ticket number is nothing but the value of an auto incremented numeric field, which is unique also. Now in this case once the record is created we have to display or process (sending mail etc) along with the trouble ticket number (auto incremented unique ID) to the system. Here we will use mysql_insert_id() function to get the id generated after the insert command. We have to just echo or print the mysql_insert_id() to show the trouble ticket number. Here is an example of this. We will start with an insert command.

$query=mysql_query(“insert into help_desk(userid,type,domain,detail) values('$userid','$type','$domain','$detail')”);

/* Note that here auto increment field is not shown as it automatically add the next incremented value with every insert command */

echo "Your trouble ticket number is = " mysql_insert_id();

This way we can display the generated ID of auto increment field of recent insert command.

However you may not like to show 1 or 2 as trouble ticket number so you can start the id at a higher value. You can manipulate and add strings ( text or today's date ) by various string function to this insert ID to make it a meaning full number.

Further readings
MySQL Auto Increment field to generate unique record ID
How to start auto increment value from a predefined value ?
mysql_insert_id() to get the auto increment number of just inserted record
Tom34523-06-2009
On insert of a new user (multipule fields) into a new record in db table, how can I concat username.mysql_insert_id() to insert a unique nickname field for that record during the insert? I would like to perform this during the insert with that users unique record ID, not querying for the previous ID value.
smo24-06-2009
mysql_insert_id() you will get after the insert query is executed. After this you can use one update query and add the data to the field for this perticular record. In a single query I don't think this is possible.
joe10-02-2010
what happens if another web page does an insert between your insert and mysyl_insert_id() call ?

Do you need to lock the table to stop this?
Post Comment This is for short comments only. Use the forum for more discussions.
Name
Email( not to be displayed)Privacy Policy
1+2=This is to prevent automatic submission by spammers. Please enter the result of the sum as asked
Sections
PHP
JavaScript
ASP
HTML
SQL
Photoshop
Articles SEO
SQL Tutorial List
SQL site Map
Knowledge Management
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.