Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL에서 다음 자동 증가 ID를 얻는 방법은 무엇입니까?

<시간/>

MySQL에는 자동 증가를 수행하는 AUTO_INCREMENT 키워드가 있습니다. AUTO_INCREMENT의 시작 값은 기본값인 1입니다. 새 레코드마다 1씩 증가합니다.

MySQL에서 다음 자동 증가 ID를 얻으려면 MySQL에서 last_insert_id() 함수를 사용하거나 SELECT와 함께 auto_increment를 사용할 수 있습니다.

자동 증분으로 "id"를 사용하여 테이블 만들기

mysql> create table NextIdDemo
   -> (
   -> id int auto_increment,
   -> primary key(id)
   -> );
Query OK, 0 rows affected (1.31 sec)

테이블에 레코드 삽입하기.

mysql> insert into NextIdDemo values(1);
Query OK, 1 row affected (0.22 sec)

mysql>  insert into NextIdDemo values(2);
Query OK, 1 row affected (0.20 sec)

mysql>  insert into NextIdDemo values(3);
Query OK, 1 row affected (0.14 sec)

모든 기록을 표시합니다.

mysql> select *from NextIdDemo;

다음은 출력입니다.

+----+
| id |
+----+
|  1 |
|  2 |
|  3 |
+----+
3 rows in set (0.04 sec)

위에 3개의 레코드를 삽입했습니다. 따라서 다음 id는 4여야 합니다.

다음은 다음 id를 알 수 있는 구문입니다.

SELECT AUTO_INCREMENT
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = "yourDatabaseName"
AND TABLE_NAME = "yourTableName"

다음은 쿼리입니다.

mysql> SELECT AUTO_INCREMENT
    -> FROM information_schema.TABLES
    -> WHERE TABLE_SCHEMA = "business"
    -> AND TABLE_NAME = "NextIdDemo";

다음은 다음 자동 증가를 표시하는 출력입니다.

+----------------+
| AUTO_INCREMENT |
+----------------+
|              4 |
+----------------+
1 row in set (0.25 sec)