• since you said the PartNumber is the first field, then yes; but it also depends on how selective that single column is.

    if there's a lot of common values, SQL might just decide to do a clustered index scan instead.

    so to confirm, if PartNumber is the leading column in your index that has three fields, would it be posible for a query to use the index.

    so if the index is (PartNumber,SecondKey,ThirdKey) then yes.

    if the index was created as (FirstKey,SecondKey,PartNumber) then no, you'd need an extra idnex.

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!