当前位置:   article > 正文

Linux查看SQLite数据库_sqlite linux如何查看表

sqlite linux如何查看表

命令行工具

安装sqlite3

1. sqlite>.tables                        --查看当前数据库所有表 
2. sqlite>.tables table_name                   --查看当前数据库指定表
3. sqlite>.schema                        --查看当前数据库所有表的建表(CREATE)语句 
4. sqlite>.schema table_name                   --查看指定数据表的建表语句 
5. sqlite>select * from sqlite_master from;           --查看所有表结构及索引信息 
6. sqlite>select * from sqlite_master where type='table';    --查看所有表结构信息 
7. sqlite>select name from sqlite_master where type='table';   --对于表来说,name字段指表名,查询所有表
8. sqlite>select * from sqlite_master where type='table' and name='table_name';   --查看指定表结构信息 
9. sqlite>select * from sqlite_master where type='index';    --查看所有表索引信息,查询所有索引 
10. sqlite>select name from sqlite_master where type='table';   --对于索引来说,name字段指索引名
11. sqlite>select * from sqlite_master where type='index' and name='table_name'; --查看指定表索引信息
12. sqlite>pragma table_info ('table_name')            --查看指定表所有字段信息,类似于msyql:desc table_name
13. sqlite>select typeof('column') from table_name;        --查看指定表字段【column】类型,括号内可不输引号 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

可视化工具-sqlitebrowser

安装sqlitebrowser:sudo apt-get install sqlitebrowser
使用:sqlitebroswer test.db

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/610134
推荐阅读
相关标签
  

闽ICP备14008679号