Notifications
Clear all
Topic starter 18/10/2024 7:12 pm
What is the purpose of index in SQL Server MCQ?
Topic starter 18/10/2024 7:12 pm
A database index is a data structure that improves the speed of data retrieval operations on a database table at the cost of additional writes. (google)
This is not all. From Oracle I know that if you want a full table scan or above 70% the index delay the retrieval.
If less is ok.In general we use index to find the proper record(s) that must manage (update,delete,view), and in many cases this become faster with index.