Will a multi column PRIMARY KEY create a multi column INDEX in SQLite?
- by Derk
When creating a table with a multi column PRIMARY KEY like this,
CREATE TABLE t (a, b, PRIMARY KEY(a, b))
will it create a compound index that behaves the same as it would when indexed like this?
CREATE INDEX i ON t (a, b)