SQLite Forum

Index organized tables
Login
Oracle database supports so called index organized tables ([IOT](https://oracle-base.com/articles/8i/index-organized-tables)) where all data is stored in index B*-tree effectively eliminating duplication of data. It also improves performance of queries which use primary key.

I wonder whether SQLite supports something similar?