\"create table \"+TABLE_NAME+
                \"(id integer primary key autoincrement,\"+
                \"name text not null,\"+
                \"add text not null,\"+
                \"phone text not null,\"+
                \"manager text not null);\";

이렇게 테이블을 만들었습니다
id는 오토로 만들어지게했는데

insert한번 한다음에 바로
auto로 만들어진 id를 추출하고 싶은데 뭐라고 쿼리 날려야합니까?