查询表结构
select * from sqlite_master
select * from sqlite_temp_master
查询单表列信息
PRAGMA table_info(表名);
查询单个索引信息
PRAGMA index_info(索引名);