Search notes:

SQLite: analyze

analyze gathers statistics about the available indices.
After analyzing a database, SQLite uses the gathered statistics to reorder tables in a select statement.
The statistics are stored in the tables sqlite_stat1, sqlite_stat3 and/or sqlite_stat4, depending on the compile time options(?) of SQLite.

Index