Forum Moderators: open
so if a record contains a field with a value "a test value",
the value of First_letter_of_string would be 1.
that way, when someone searches for "zebra" i will run the query:
"select * from table where first_letter_of_string=26 and string_field like 'zebra%';"
is this faster than the usual "select * from table where string_field like 'zebra%" ?
or does mysql do any key optimizations (which i expect from him :) so i won't have to make this optimization "patch" myself ?
thankl