When optimizing this query:
SELECT DISTINCT Order FROM OrderItem
which plans would the different RDBMS engines build and which would be the most efficient?
|
When optimizing this query:
which plans would the different RDBMS engines build and which would be the most efficient? | |||||||
feedback
|
|
It will depend on the indexing and the database.
So go ahead and try it out on the different servers using Identical schemas and find out for yourself! | |||
feedback
|
|
The other engines would use either a The former is usually more efficient on an indexed field, however, the index scanning overhead may be quite significant, so | ||||
|
feedback
|