6.21. SQL Explain

ANALYZE users;
EXPLAIN ANALYZE users;
Code 6.32. Not working in SQLite
EXPLAIN SELECT firstname FROM users;
Code 6.33. Not working in SQLite
EXPLAIN ANALYZE
SELECT *
FROM users;