SQLite数据表自动加1的解决办法

前端之家收集整理的这篇文章主要介绍了SQLite数据表自动加1的解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在使用sqlite创建数据表时,使用下面方法创建自动加1的数据列。

1.使用autoincrement关键字

create table temp(id integer primary key autoincrement,name varchar(20));

insert into temp(name) values ( 'a');

insert into temp(name) values ( 'b');

select * from temp;

原文链接:https://www.f2er.com/sqlite/202137.html

猜你在找的Sqlite相关文章