I have a parent table and a child table.
The parent table has a clustered index as primary key with increment value (ParentID
). The child table also has a clustered index as primary key with increment value (ChildID
)
Primary key Parent.parentID
is in relation with child.parentID
as a foreign key.
I join those two tables based on following query.
Select ....
Join on parent.parentID = child.parentID
where parent.personalNumber = 197608134356 <-- varchar
Now, should I
- add non clustered index on
parent.personalNumber
as it is in the where clause? - Add a non clustered index on the foreign key
child.parentiD
to speed up the join?
It would mean I put non clustered index over a clustered index table.
I expect a lot of rows on both parent and child over time. There will be inserts and selects. No updates or deletes
Thanks /s
personalNumber
. What about thechild.parentID
it is depend on what type of join is used by optimizer. Usually, to add the index onchild.parentID
is good idea. – Hamlet Hakobyanchild.ParentID
to help with the JOINs. Whether or not the NC index onparent.PersonalNumber
will help depends on (a) how selective thatPersonalNumber
is (with a given value, how many % of the original rows will be retrieved?) and (b) what kind of columns you have in yourSELECT
clause (if you useSELECT *
everywhere, then the usefulness of a NC index is significantly reduced) – marc_s