1.sqlite 查出所有表名
select name from sqlite_master where type='table'
2.sqlite 查出表的所有字段
PRAGMA table_info([表名])
原文链接
https://wangdongjie.com/sqlite-query-all-tables
select name from sqlite_master where type='table'
PRAGMA table_info([表名])
原文链接
https://wangdongjie.com/sqlite-query-all-tables
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。