2007-08-10から1日間の記事一覧

mysqlでインデックスの作成/削除/確認する

ref. http://www.thinkit.co.jp/free/article/0707/2/5/index.html?fr=rdf http://www.cgis.biz/mysql/12.htm 作成 create table時に指定 create table hoge ( id int, name char(8), hoge varchar(32), primary key (id), unique index uniq_idx_name (name…