6.21. SQL Explain

ANALYZE users;
EXPLAIN ANALYZE users;
Code 6.44. Not working in SQLite
EXPLAIN SELECT firstname FROM users;
Code 6.45. Not working in SQLite
EXPLAIN ANALYZE
SELECT *
FROM users;