Querying Index in SQLite
How can I perform query on Index in SQLite
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Javeed M ShaikhPosted Nov 7, 2011, 12:29 AM
I think you cannot use indexes directly in SQLite, instead you only create them for the columns you choose from a table. You will probably want to index columns such as primary and foreign keys, columns which you often include in your where clauses and so on.