如果想列出该数据库中的所有表
.table
如果想查看这些表的结构
select * from sqlite_master where type="table"
如果只想查看某个表的结构,例如查看visits表的结构
select * from sqlite_master where type="table" and name="visits"
另外还可以
.schema visits
如果想列出该数据库中的所有表
.table
如果想查看这些表的结构
select * from sqlite_master where type="table"
如果只想查看某个表的结构,例如查看visits表的结构
select * from sqlite_master where type="table" and name="visits"
另外还可以
.schema visits