views:

19

answers:

2

How can I tell if a column in my sqlite3 database has a database index on it?

+3  A: 

.schema

jdl
+1 for linking to the solution.
Donal Fellows
A: 

Look up the table definition in the schema, or the CREATE TAbLE statement in your DB creation script.

EJP