前端之家收集整理的这篇文章主要介绍了
【备忘系列】使用命令行查看Sqlite的数据内容,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
- adb shell
- cd 到db所在目录
- sqlite3 user_info.db
- .tables 列出db中所有的表
- 接下来用sql语句吧,骚年!
小技巧:
-
.mode column 查询结果以列表形式显示,方便查看
-
.header on 查询结果会把列名放在第一行,
语法示例:
select * from[tablename]where [columnname]is not "" and [columnname] != [value]
select * from Studentwhere monkeyis not "" and sexy!= 'female'
参考资料:
http://www.server110.com/sqlite/201308/796.html
http://www.sqlite.org/lang.html
原文链接:https://www.f2er.com/sqlite/200624.html