可以用create index创建索引,如create index test_idx on tablename(col1,col2)系统优化时会自动选择使整个查询开销最小的查询计划。如你的sql 为select * from tablename where col1 = @col1 and col2 = @col2 时一般都会用到索引。