概述sqlite3 contacts2.db; 打开数据库文件 .table list 数据库中的表 schema calls; 列出指定名称表的所有字段 insert into calls (‘number’,’name’) VALUES (’13770525123′,’police’); 插入数据 delete from calls where _id =1; select * from call
sqlite3 contacts2.db; 打开数据库文件
.table List 数据库中的表
schema calls; 列出指定名称表的所有字段
insert into calls (‘number’,’name’) VALUES (’13770525123′,’police’); 插入数据
delete from calls where _ID =1; select * from calls where _ID>1 order by _ID asc limit 5 offset 3; update calls set name=’police’ where _ID=+2; create table callc drop table callc .exit 总结
以上是内存溢出为你收集整理的sqlite3全部内容,希望文章能够帮你解决sqlite3所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
评论列表(0条)