drop table if exists t1; create table t1 (c char(10), index(c)) charset macce engine=ibmdb2i; insert into t1 values ("test"); select * from t1 order by c; c test drop table t1;