Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does sqlite support indexes? [closed]

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..

like image 434
alitha Avatar asked Mar 27 '15 05:03

alitha


1 Answers

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.

like image 54
CL. Avatar answered Sep 23 '22 01:09

CL.