My db is running on mysql v5.x. I have a table T1 with 5 columns and column C1 is the primary key. C1 is of type varchar(20). It contains about 2000 rows with values like:
fxg
axt3
tru56
and so on..
Now my application's job is to read input data and find if the input data has a starting pattern similar to that found in column C1 in table T1. For example: my input may appear as:
trx879478986
fxg87698x84
784xtr783utr
axt3487ghty
... and so on
So for the above input, I have to return true for 'fxg87698x84' and 'axt3487ghty' and false for others. The query I use is:
select 1 from T1 where (? like concat(C1,'%'));
note: the ? is replaced by the input value got from the application.
The issue is my input is huge (about 1 million records to be processed in 30 minutes) and my query is not fast enough. Any ideas on how to re-write the query or force it to use indexes? Even if I have to use a different object structure, I can do it, if that helps. So any help will be appreciated. Thx.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…