can anyone tell me if Sqlite supports clustered and nonclustered indexes? and if it does how do i make a column which is non primary key a nonclustered index? I am very new to database concepts hence very confused..
Asked
Active
Viewed 4,817 times
8
-
2http://stackoverflow.com/a/10147957/1864610 – Mar 27 '15 at 05:22
-
@HoboSapiens That information is outdated. – CL. Mar 27 '15 at 08:20
1 Answers
13
In SQLite, indexes created with CREATE INDEX are non-clustered indexes.
Since version 3.8.2, SQLite supports WITHOUT ROWID tables, which are clustered indexes.

CL.
- 173,858
- 17
- 217
- 259