create table t(f blob);
create index idx_f on t(f);
或者
create table t(f blob,index(f));错误信息:ERROR 1170 (42000): BLOB/TEXT column 'f' used in key specification without a key length是不是建立不了索引啊,又有哪些字段是建不了索引的呢?