If i perform a standard query in SQLite:
SELECT * FROM my_table
I get all records in my table as expected. If i perform following query:
If you want to count the number of records in your table, simply run:
SELECT COUNT(*) FROM your_table;