你正在寻找的是数据字典。在sqlite中,可以通过查询sqlite_master表(或视图?)找到所有表的列表
原文链接:https://www.f2er.com/sqlite/198303.htmlsqlite> create table people (first_name varchar,last_name varchar,email_address varchar); sqlite> select * from sqlite_master; table|people|people|2|CREATE TABLE people (first_name varchar,email_address varchar)
要获取列信息,可以使用pragma table_info(table_name)语句:
sqlite> pragma table_info(people); 0|first_name|varchar|0||0 1|last_name|varchar|0||0 2|email_address|varchar|0||0
有关pragma语句的更多信息,请参阅documentation。