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
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,
sqlite_sequence