1. 程式人生 > >sqlite中檢視指定資料庫表的詳細結構資訊

sqlite中檢視指定資料庫表的詳細結構資訊

 可以查詢到當前資料庫中所有表的詳細結構資訊

可以查詢到當前資料庫中所有表的詳細結構資訊
select * from sqlite_master WHERE type = "table";


可以查詢到當前資料庫中指定表的詳細結構資訊

可以查詢到當前資料庫中指定表的詳細結構資訊
select * from sqlite_master WHERE type = 'table' AND name = 'blog_blogarticles';


檢視指定資料庫表名的資料庫結構

檢視指定資料庫表名的資料庫結構
pragma table_info ('blog_blogarticles');