Guest_imported
New member
- Jan 1, 1970
- 0
Please consider the following case and let me know what you think:
T1 table with C1, C2, C3, C4, C5, C6 columns
Select *
From T1
Where C1 = a
And C2 = b
Order by C5, C6
Is there a performance gain of index (C1, C2, C3, C4, C5, C6) over index (C1, C2, C3, C4)?
T1 table with C1, C2, C3, C4, C5, C6 columns
Select *
From T1
Where C1 = a
And C2 = b
Order by C5, C6
Is there a performance gain of index (C1, C2, C3, C4, C5, C6) over index (C1, C2, C3, C4)?