searching
Hi I have a column in my database where emails are copied to, and i need
to be able to search through each entry for certain keywords and display the
results if the column contains any of the keywords. i can't figure out how to do
this though, because if i use the select statement like this:
select * from maintable where column LIKE ('keyword')
or
select * from maintable where column IN ('keyword')
it will only display the results when the keyword is the only word in the field. Can anyone help?
|