I have column that contain unique values and full table scan will take for ever.
from my understanding
If I use unique index it will start searching form the beginning of the table and then stop when it find the value
while non-unique index will search in closest range of where statement and that what I need
if I have column that contain
Maple Louie
Raphael Gudino
Nereida Tankersley
Alina Colletti
Jeane Lamm
Shonta Forsman
Ciara Cardamone
if I used non-unique index will it search within the range like
where name = Jeane Lamm
will the database search for names start with j letter only ?
or it will do full scan ??