|
|
|
|
|
by irishsultan
3331 days ago
|
|
No, what DBs do when you index is have a separate data structure from the main table, this doesn't affect what the table itself looks like. Nor is it likely this index will support a binary search (because a binary search works on arrays, but an index is most likely a tree structure, even when it's not it's unlikely to be an array). What you presumably want is a way to specify which indices to use and perhaps to specify an order on the joins and perhaps the type of join as well. |
|