I’ve seen the sql server execution plan and the mysql explain, which give details about where queries are not performing as well as they might. I think I need to create some indexes, but I’m not sure where.
Is there a tool for sqlite ?
Don’t mind if its on the mac or windows.
SQLite has a built-in query explain statement. You probably want
EXPLAIN QUERY PLAN.