檢視sqlite中的表結構

yingxian_Fei發表於2016-03-24

通過adb shell命令可以進入sqlite3的命令列client。

1、列出該資料庫中的所有表

.table

2、檢視錶的結構

select * from sqlite_master where type="table";

3、檢視具體一張表的表結構

如檢視"system"表結構可使用如下命令:

select * from sqlite_master where type="table" and name="system";

也可以使用如下命令:

.schema emperors 


相關文章