« Mac: SVN | メイン | 認証サービスいろいろ »

SQLite: Auto Indice ( 自動インデックス )

あとで読む

SQLite creates an index for every UNIQUE column automatically.

SQLite は UNIQUEなコラムに自動でインデックスを作るよ。

For example, you give a schema like the following,

create table memos (
 mtime timestamp unique not null,
 content text not null
);

Then, you can recognize autoindex for mtime.

sqlite> select * from sqlite_master;
.....
index|(memos autoindex 1)|memos|3|

Trackbacks

Trackback URL:
http://groundwalker.com/mt/gwtb.cgi/237

« Mac: SVN | メイン | 認証サービスいろいろ »

スポンサー

関連ブログ

あわせて読みたい

関連キーワード

Powered by
Movable Type 3.34

連絡先