6.27. SQL Explain

ANALYZE users;
EXPLAIN ANALYZE users;
Code 6.1. Not working in SQLite
EXPLAIN SELECT firstname FROM users;
Code 6.2. Not working in SQLite
EXPLAIN ANALYZE
SELECT *
FROM users;