to search in multiple columns, you need multiple WHERE conditions
i guess the big question is whether you want ANDs or ORs
Code:
select something
from tblArticles
where name like '%foo%'
and description like '%bar%'
if you want several words as parameters, you could string them all together with wildcards
Code:
where description like '%foo%bar%qux%'
but then of course you'd get a match only if all three words were included in that order
to search for them in any order, you'd want
Code:
where description like '%foo%bar%qux%'
and description like '%foo%bar%qux%'
and description like '%foo%bar%qux%'
but here again, because of the ANDs, you'd get a match only if all three words were included
helps?
Bookmarks