数据库是SQL2008现在发现有一SQL语句:
select no,CCoName1 from cname1 where (country_no='156' or country_no='-156') and cconame1>='昆山长声'表结构是
CREATE TABLE [dbo].[Cname1](
[no] [int] NOT NULL,
[country_no] [char](5) NOT NULL collation SQL_1xCompat_CP850_CI_AS,
[CCoName1] [char](62) NULL collation SQL_1xCompat_CP850_CI_AS
) ON [PRIMARY]索引
index_name index_description index_keys
CCoName1_ind clustered, unique located on PRIMARY CCoName1, no
duns_no_ind nonclustered, unique located on PRIMARY no(-)现在问题是看了查询计划,该SQL语句没有100%走索引,有11%走的是  |--Parallelism(Gather Streams)
请问如何才能100%走这个索引CCoName1_ind谢谢!!!