Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- MySQL
- soundcontroller
- 볼륨조절앱
- 알림바
- Query
- 볼륨조절어플
- crashlytics
- last_insert_id
- db
- 파이썬
- Android
- 역슬레시
- 데이터베이스
- 디자인패턴
- insertion
- insert_id
- 안드로이드앱
- mariaDB
- Auto_increment
- Python
- condensed
- 메터리얼
- 안드로이드
- escape_string
- id 얻기
- auto_increment 값
- 안드로이드 스튜디오
- mysql_insert_id
- android studio
- 머터리얼
Archives
- Today
- Total
목록Auto_increment (2)
장삼의 착한코딩
[데이터베이스] 다음 auto_increment 값 받아오기
query를 사용하다보면 insert시 다음 auto_increment 값이 필요할 때가 있다. select LAST_INSERT_ID() 를 사용할 수도 있지만, LAST_INSERT_ID()는 table을 선택할 수 없다. 그래서 아래의 query를 사용하면 다음 auto_increment의 값을 얻을 수 있다. SELECT AUTO_INCREMENTFROM information_schema.tablesWHERE table_name = 'table name'AND table_schema = DATABASE( ) ;
데이터베이스
2016. 1. 26. 17:45