본문 바로가기
MySql

MySQL mysql에서 마지막으로 삽입 된 자동 증가 ID 가져 오기

by 베이스 공부 2021. 1. 14.
반응형

mysql_insert_id ();와 같은 mysql 명령을 얻으려고합니다. 마지막으로 삽입 된 행의 auto_increment ID를 검색합니다. Java로 가져 오려면 어떻게해야합니까?

rs = st.executeQuery("select last_insert_id() from schedule");
lastid = rs.getString("last_insert_id()");

내 lastid는 INT로 선언되었습니다. rs.get 및 매개 변수에서 무엇을 사용할지 모르겠습니다.

 

해결 방법

 

별칭을 사용해보십시오

rs = st.executeQuery("select last_insert_id() as last_id from schedule");
lastid = rs.getString("last_id");

 

참조 페이지 https://stackoverflow.com/questions/14170656

 

 

반응형

댓글