sqlite3 查询数据库表结构

前端之家收集整理的这篇文章主要介绍了sqlite3 查询数据库表结构前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

遇有未知结构的数据库时,可以通过以下方法来或许数据库中详细信息。

1. .table命令 可以查询当前数据库中所有的表名

2. select * from sqlite_master WHERE type = "table"; 可以查询到当前数据库中所有表的详细结构信息

[test@localhost ~]$ sqlite3 py.db

sqlite version 3.6.17

Enter ".help" for instructions

Enter sql statements terminated with a ";"

sqlite> .table

py_phrase py_pinyin py_shengmu

sqlite> select * from sqlite_master WHERE type = "table";

table|py_pinyin|py_pinyin|2|CREATE TABLE py_pinyin (pinyin TEXT PREMARY KEY)

table|py_shengmu|py_shengmu|3|CREATE TABLE py_shengmu (shengmu TEXT PREMARY KEY)

table|py_phrase|py_phrase|4|CREATE TABLE py_phrase (

ylen INTEGER,

y0 INTEGER,y1 INTEGER,y2 INTEGER,y3 INTEGER,yx TEXT,u5b8bu4f53; font-size:14px; text-indent:2em"> s0 INTEGER,s1 INTEGER,s2 INTEGER,s3 INTEGER,u5b8bu4f53; font-size:14px; text-indent:2em"> phrase TEXT,u5b8bu4f53; font-size:14px; text-indent:2em"> freq INTEGER,user_freq INTEGER)

sqlite>

  1. 1)创建数据库文件:
  2. >sqlite3d:\test.db回车
  3. 生成了一个test.db在d盘。
  4. 这样同时也sqlite3挂上了这个test.db
  5. 2)
  6. 用.help可以看看有什么命令
  7. >.help回车即可
  8. 3)可以在这里直接输入sql语句创建表格用;结束,然后回车就可以看到了
  9. 4)看看有创建了多少表
  10. >.tables
  11. 5)看表结构
  12. >.schema表名
  13. 6)看看目前挂的数据库
  14. >.database
  15. 7)如果要把查询输出文件
  16. >.output文件
  17. >查询语句;
  18. 查询结果就输出到了文件c:\query.txt
  19. 查询结果用屏幕输出
  20. >.outputstdout
  21. 8)把表结构输出,同时索引也会输出
  22. .dump表名
  23. 9)退出
  24. >.exit或者.quit
  25. 普通sql操作,通用标准sql语句
原文链接:https://www.f2er.com/sqlite/199962.html

猜你在找的Sqlite相关文章