sqlserver怎么为表添加索引?怎么用?

2024-12-24 16:18:50
推荐回答(1个)
回答1:

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