markdown Sqlite,auto_increase

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Sqlite,auto_increase相关的知识,希望对你有一定的参考价值。

# Set Auto Increase Num
There is a build-in table called sqlite_sequence store the current index of auto increase number of table.
``` SQL
sqlite> select * from sqlite_sequence;
name       seq
---------  --------------------
CASE_INFO  1284
COMMIT_TR  0
SVN_FILES  2774
```
reset this to 0, and when insert record to table, number will change.

以上是关于markdown Sqlite,auto_increase的主要内容,如果未能解决你的问题,请参考以下文章

markdown Sqlite,auto_increase

markdown SQLite3,外键

markdown Sqlite3数据库类

markdown SQLite3 :: BusyException:数据库被锁定

markdown rest-api使用node.js和sqlite3

InnoDB引擎的auto_increment字段和MyISAM引擎的auto_increment字段的异同