CHeighlund
Programmer
I've been requested to modify a program that reads from our database - the purpose of the modification is to permit the usage of wildcard searches. (Ex: find fog, foolish, and ford when searching on 'fo*')
I know I need to use the '%' character for my searches. I know I need to use LIKE. But the searches are having to parse a fairly large database, and it's taking longer than my boss would like for the search to run. Is there any way of indexing a table so as to make wildcard searches run faster, or some other way of doing this, or am I simply chasing a pipe dream?
I know I need to use the '%' character for my searches. I know I need to use LIKE. But the searches are having to parse a fairly large database, and it's taking longer than my boss would like for the search to run. Is there any way of indexing a table so as to make wildcard searches run faster, or some other way of doing this, or am I simply chasing a pipe dream?