T
Tim Zych
Hi. I have a database with search capability (Asp.Net, Access 2000). Type is
a few words and get results using the following approach:
SELECT tblCode.CodeID, tblCode.Title FROM tblCode WHERE tblCode.Code Like
'%word1%' And tblCode.Code Like '%word2%';
where Code is a non indexed memo field.
I am wondering, is there a better approach than using the wildcards? Since
this is being performed on the entire memo column, I would imagine this
might get quite slow on many rows.
It works OK for now, but I would like to find a more robust way.
Any suggestions?
Thanks.
a few words and get results using the following approach:
SELECT tblCode.CodeID, tblCode.Title FROM tblCode WHERE tblCode.Code Like
'%word1%' And tblCode.Code Like '%word2%';
where Code is a non indexed memo field.
I am wondering, is there a better approach than using the wildcards? Since
this is being performed on the entire memo column, I would imagine this
might get quite slow on many rows.
It works OK for now, but I would like to find a more robust way.
Any suggestions?
Thanks.