LAST_INSERT_ID()SQL函数或者
mysql_insert_id() C API 函数来获得最新插入的ID,这获取的ID是当前connection内的变量,即不会与其他连接插入的ID冲突,因此,不用担心并发插入导致的ID错误。
3.6.9 Using AUTO_INCREMENT
The AUTO_INCREMENT attribute can be used to generate a unique identity for new rows:
CREATE TABLE animals (
id MEDIUMINT NOT NULL AUTO_INCREMENT,
name CHAR(30) NOT NULL,
PRIMARY KEY (id)
);
INSERT INTO animals (name) VALUES
('dog'),('cat'),('penguin'),
('lax'),('whale'),('ostrich');
SELECT * FROM animals;
Which returns:
+----+---------+ | id | name | +----+---------+ | 1 | dog | | 2 | cat | | 3 | penguin | | 4 | lax | | 5 | whale | | 6 | ostrich | +----+---------+
No value was specified for the AUTO_INCREMENT column, so MySQL assigned sequence numbers automatically. You can also explicitly assign 0 to the column to generate sequence numbers. If the column is declared NOT NULL, it is also possible to assign NULL to the column to generate sequence numbers.
You can retrieve the most recent AUTO_INCREMENT value with the LAST_INSERT_ID() SQL function or themysql_insert_id() C API function. These functions are connection-specific, so their return values are not affected by another connection which is also performing inserts.
Use the smallest integer data type for the AUTO_INCREMENT column that is large enough to hold the maximum sequence value you will need. When the column reaches the upper limit of the data type, the next attempt to generate a sequence number fails. Use the UNSIGNED attribute if possible to allow a greater range. For example, if you use TINYINT, the maximum permissible sequence number is 127. For TINYINT UNSIGNED, the maximum is 255. See Section 11.2.1, “Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT” for the ranges of all the integer types.
For a multiple-row insert, LAST_INSERT_ID() and mysql_insert_id() actually return the AUTO_INCREMENT key from the first of the inserted rows. This enables multiple-row inserts to be reproduced correctly on other servers in a replication setup.
To start with an AUTO_INCREMENT value other than 1, set that value with CREATE TABLE or ALTER TABLE, like this:
mysql> ALTER TABLE tbl AUTO_INCREMENT = 100;
InnoDB Notes
For InnoDB tables, be careful if you modify the column containing the auto-increment value in the middle of a sequence of INSERT statements. For example, if you use an UPDATE statement to put a new, larger value in the auto-increment column, a subsequent INSERT could encounter a “Duplicate entry” error. The test whether an auto-increment value is already present occurs if you do a DELETE followed by more INSERT statements, or when you COMMIT the transaction, but not after an UPDATE statement.
MyISAM Notes
-
For
MyISAMtables, you can specifyAUTO_INCREMENTon a secondary column in a multiple-column index. In this case, the generated value for theAUTO_INCREMENTcolumn is calculated asMAX(. This is useful when you want to put data into ordered groups.auto_increment_column) + 1 WHERE prefix=given-prefixCREATE TABLE animals ( grp ENUM('fish','mammal','bird') NOT NULL, id MEDIUMINT NOT NULL AUTO_INCREMENT, name CHAR(30) NOT NULL, PRIMARY KEY (grp,id) ) ENGINE=MyISAM; INSERT INTO animals (grp,name) VALUES ('mammal','dog'),('mammal','cat'), ('bird','penguin'),('fish','lax'),('mammal','whale'), ('bird','ostrich'); SELECT * FROM animals ORDER BY grp,id;Which returns:
+--------+----+---------+ | grp | id | name | +--------+----+---------+ | fish | 1 | lax | | mammal | 1 | dog | | mammal | 2 | cat | | mammal | 3 | whale | | bird | 1 | penguin | | bird | 2 | ostrich | +--------+----+---------+
In this case (when the
AUTO_INCREMENTcolumn is part of a multiple-column index),AUTO_INCREMENTvalues are reused if you delete the row with the biggestAUTO_INCREMENTvalue in any group. This happens even forMyISAMtables, for whichAUTO_INCREMENTvalues normally are not reused. -
If the
AUTO_INCREMENTcolumn is part of multiple indexes, MySQL generates sequence values using the index that begins with theAUTO_INCREMENTcolumn, if there is one. For example, if theanimalstable contained indexesPRIMARY KEY (grp, id)andINDEX (id), MySQL would ignore thePRIMARY KEYfor generating sequence values. As a result, the table would contain a single sequence, not a sequence pergrpvalue.
Further Reading
More information about AUTO_INCREMENT is available here:
-
How to assign the
AUTO_INCREMENTattribute to a column: Section 13.1.17, “CREATE TABLE Syntax”, andSection 13.1.7, “ALTER TABLE Syntax”. -
How
AUTO_INCREMENTbehaves depending on theNO_AUTO_VALUE_ON_ZEROSQL mode: Section 5.1.7, “Server SQL Modes”. -
How to use the
LAST_INSERT_ID()function to find the row that contains the most recentAUTO_INCREMENTvalue: Section 12.14, “Information Functions”. -
Setting the
AUTO_INCREMENTvalue to be used: Section 5.1.4, “Server System Variables”. -
AUTO_INCREMENTand replication: Section 17.4.1.1, “Replication and AUTO_INCREMENT”. -
Server-system variables related to
AUTO_INCREMENT(auto_increment_incrementandauto_increment_offset) that can be used for replication: Section 5.1.4, “Server System Variables”.
本文介绍了MySQL中AUTO_INCREMENT属性的使用方法及其在不同引擎下的行为特点。包括如何创建自增列、通过LAST_INSERT_ID()函数获取最近插入的ID值、设置初始自增值等。并针对InnoDB和MyISAM引擎提供了注意事项。
4816

被折叠的 条评论
为什么被折叠?



