| | |
MySQL auto incremented field to generate unique ID for the record
We can get a unique auto generated number from MySQL by creating an auto incremented field. MySQL will generate a unique number by incrementing the last number of the table and will automatically add to the auto incremented field. This is the best way to generate a trouble ticket number for a help desk system. In a school if a new student joins then all details of the student we can feed to student table and while using the insert query, MySQL will add one auto generated unique number to this auto incremented field. We need not have to specify any thing in our query while adding the auto incremented field data. After successfully adding the record we can get this unique number by using mysql_insert_id(). Read the details on how to get this number by visiting the tutorial here. Now let us try how to create a such auto incremented field.
We have to make auto increment field integer ( obvious ) and also unique. The property set to auto increment. Here is the sql to create a student table with one auto increment field to assign one unique student ID.
CREATE TABLE `student` (
`student_id` INT( 3 ) NOT NULL AUTO_INCREMENT,
`name` VARCHAR( 25 ) NOT NULL ,
`email` VARCHAR( 50 ) NOT NULL ,
UNIQUE (
`student_id`
)
);
Now we will add one record to this table using one insert command.
INSERT INTO `student` ( `name` , `email` )
VALUES ( 'john', 'john@sitename.com' );
You will see automatically the student_id field will be added with 1 and for next record it will get the next incremented value 2.
This way we can generate auto increment id for each record in our table.
Read how we can alter table and make one numeric field as auto increment
Read here on how to create one incremental auto generated record number in MSSQL table.
| | Senthu | 07-12-2009 |
|---|
How to export the tables in .sql format from phpmysql db by using in phpMySQL ??
Thank you
SENTHU |
|
|
|
|
|
|