【备忘系列】使用命令行查看Sqlite的数据内容

前端之家收集整理的这篇文章主要介绍了【备忘系列】使用命令行查看Sqlite的数据内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

快速上手:

  1. adb shell
  2. cd 到db所在目录
  3. sqlite3 user_info.db
  4. .tables 列出db中所有的表
  5. 接下来用sql语句吧,骚年!


小技巧:
  1. .mode column 查询结果以列表形式显示,方便查看
  2. .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
Android adb shell下查看sqlite数据库
原文链接:https://www.f2er.com/sqlite/200624.html

猜你在找的Sqlite相关文章