List of system tables in SQLite

前端 未结 3 1195
后悔当初
后悔当初 2020-12-14 21:59

I am trying to filter all the tables in a SQLite database based on if they are system tables or user generated ones.

So far I\'ve found out that they are the ones wi

3条回答
  •  一生所求
    2020-12-14 22:34

    There is only one system table that is of any consequence.

    select * from sqlite_master
    

    but you may get some useful information from sqlite_sequence,

提交回复
热议问题