Another interesting option for slow count queries in sqlite.
If you haven’t DELETEd any records, doing:
SELECT MAX(ROWID) FROM "table" LIMIT 1;
!https://stackoverflow.com/questions/8988915/sqlite-count-slow-on-big-tables
Another interesting option for slow count queries in sqlite.
If you haven’t DELETEd any records, doing:
SELECT MAX(ROWID) FROM "table" LIMIT 1;
Related tags and posts connected to this entry.