遇有未知结构的数据库时,可以通过以下方法来或许数据库中详细信息。 1. .table命令 可以查询当前数据库中所有的表名 2. select * from sqlite_master WHERE type = table; 可以查询到当前数据库中所有表的详细结构信息 [test@localhost ~]$ sqlite3 py.db S
遇有未知结构的数据库时,可以通过以下方法来或许数据库中详细信息。
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,
s0 INTEGER, s1 INTEGER, s2 INTEGER, s3 INTEGER,
phrase TEXT,
freq INTEGER, user_freq INTEGER)
sqlite>