创建索引问题用sqlite创建一张表,对a、b两个字段要建索引以便快速查找,是否一定要象下面的方式建索引?还是可以用一条语句搞定?create table test(a,b,c,d)create index a on test(a)create index b on test(b)[解决办法]