sqlite 插入记录注意项

前端之家收集整理的这篇文章主要介绍了sqlite 插入记录注意项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的Sqlite相关文章