I am considering using the type-ahead/autocomplete dropdown at http://jqueryui.com/autocomplete/#multiple-remote on table of AirportNames.
e.g.
AirportCode, AirportName
JFK, John F Kennedy Airport
LAX, Los Angeles International Airport
In addition to the dropdown showing the JFK Code and AirportName when the text "JF" is typed in, I also want to to display when the user types "nned".
Should I put a full-text index on the AirportName field to make it as fast as possible? Or some sort of full-character index? I'm not sure I've used a full-text index before so was trying to understand it.
TIA Mark