sqlite中存放自定義表結構的位置

丟的錢找到了發表於2019-02-16

在sqlite中,使用者自定義的表結構存在了一個隱藏的表中,叫sqlite_master。
例如:
CREATE TABLE t1 ( name int(10), age int(5) primary key, gender char(6) )
CREATE TABLE t2 ( q varchar, w int )
之後然我們看一下這個表裡的所有內容
select * from sqlite_master;

type name tbl_name rootpage sql
table t1 t1 2 CREATE TABLE t1 (name int(10),age int(5) primary key,gender char(6))
index sqlite_aut t1 3
table t2 t2 4 CREATE TABLE t2 (q varchar,w int)

相關文章