vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I have a nested query that uses a multi-column index. Is there a benefit to be achieved by ordering the columns in a specific manner? One field, a date, has about 800 distinct values. Another, an integer, has half a million while the third is a numeric valued between -10 and 10. Can any efficency be achieved by building the index as: create index idx1 on table (a, b, c) verses: create index idx1 on table (c, a, b) ? thx, r |