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
- 방화벽
- Date and Time Functions
- String Functions and Date Operators
- Sring Functions and Operators
- Tibero
- Data and Time Functions
- 전자정부표준프레임워크
- String Function and Operators
- String Functions and Operators
- 윈도우
- 오라클
- SVN
- MySQL
- 전자정부 표준프레임워크
- 티베로
- Oracle
- Date and Time Function
- HTTP
Archives
- Today
- Total
웹이야기
MySQL AUTO_INCREMENT 값 수정 본문
auto_increment 값을 변경하는 쿼리
mysql> ALTER TABLE tbl_name AUTO_INCREMENT =100;
mysql> create table test11 (idx int auto_increment primary key, content text) ;
Query OK, 0 rows affected (0.08 sec)
mysql> insert into test11 (content) values ('test');
Query OK, 1 row affected (0.00 sec)
mysql> alter table test11 auto_increment=100;
Query OK, 0 rows affected (0.02 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> insert into test11(content) values ('test2');
Query OK, 1 row affected (0.01 sec)
mysql> select * from test11 order by idx desc ;
+-----+---------+
| idx | content |
+-----+---------+
| 100 | test2 |
| 1 | test |
+-----+---------+
2 rows in set (0.00 sec)
'D > MySQL' 카테고리의 다른 글
MySQL 논리 연산자 (0) | 2020.03.18 |
---|---|
MySQL 비교 연산자(MySQL 8.x 기준) (0) | 2020.03.18 |
MySQL 테이블 인덱스 보기 (0) | 2020.03.12 |
MySQL character-set 확인 / MySQL 한글 (0) | 2020.03.12 |
MySQL 정규표현식 구문 (0) | 2020.03.09 |
Comments