drop table if exists test;
create table test(
idintegerprimary keyautoincrement,
a int,
b int,
c int
);
insert into test values(null,1,2,3);
insert into test(a,b,c) values(2,3,4);
用 sqlite Database Browser 执行 sql 语句时老出错,有如下要注意的地方
1)integer 不能缩写为 int
2)主键的关键字为primary key
3)自增长的关键字为autoincrement
原文链接:https://www.f2er.com/sqlite/199926.html