How to understand whether a table performance is increased after adding index? I have a table field with 150 000 data. I have created another table field_test same as field. I have added index in field_test. Field does not have index. How to understand is there any change in performance.
Structure of Field and Field_test both are as follows:
- Field_id int primary key
- Field_name varchar
- DateOfCreation Datetime
I have added clustered index on the Field_id
column.