Hi Guys,
If I have a mssql 2000 table named CLAIM wherein I have created a non-clustered index named CLAIMDATE_IDX (for the field CLAIM.CLAIMDATE). If I issue a query like:
select * from claim
where claimdate = '01/20/2006'
order by claimdate
Will mssql automatically use the CLAIMDATE_IDX since the CLAIMDATE field is specified on the ORDER BY clause?
TIA,
popseven
If I have a mssql 2000 table named CLAIM wherein I have created a non-clustered index named CLAIMDATE_IDX (for the field CLAIM.CLAIMDATE). If I issue a query like:
select * from claim
where claimdate = '01/20/2006'
order by claimdate
Will mssql automatically use the CLAIMDATE_IDX since the CLAIMDATE field is specified on the ORDER BY clause?
TIA,
popseven