개발자의 끄적끄적

[sql] mysql insert 할때 사용된 auto increment 값을 가져오기 , auto increment 초기화 본문

개발/sql

[sql] mysql insert 할때 사용된 auto increment 값을 가져오기 , auto increment 초기화

효벨 2020. 2. 23. 02:00
728x90
반응형

[sql] mysql insert 할때 사용된 auto increment 값을 가져오기 , auto increment 초기화

 

MySQL에서 AUTO INCREMENT를 사용하다보면 INSERT 쿼리를 실행하며 사용된 AUTO INCREMENT 값을 필요로 할 때가 있습니다.
이 때 사용할 수 있는 함수가 LAST_INSERT_ID()라는 함수 입니다.

이 함수를 사용하면 가장 최근에 수행된 AUTO INCREMENT 값을 반환해줍니다.

1

2

3

4

INSERT INTO my_table(test1, test2, test3, test4, test5)VALUES('test1','test2','test3','test4','test5');

SELECT LAST_INSERT_ID();

 

ALTER TABLE my_table auto_increment = 1;   /* 1로 초기화 시킴*/

반응형
Comments