6.21. SQL Explain

ANALYZE users;
EXPLAIN ANALYZE users;
Code 6.50. Not working in SQLite
EXPLAIN SELECT firstname FROM users;
Code 6.51. Not working in SQLite
EXPLAIN ANALYZE
SELECT *
FROM users;