I'm trying to do a keyword search from multiple fields that will return results from any field that contains a keyword (eg. "accounting" to find any record with the word accounting in it). I'm only getting results from fields that contain just the word "accounting" but not "accounting - handbooks, manuals. etc." Any help is appreciated, I'm relatively inexperienced with this.
I'm using the following statement.
SELECT *
FROM tblSingletonUrquhartLibraryCatalogue
WHERE [Enter Keyword] In ([txtAuthors],[txtTitle],[txtSubjects],[txtDescription])
I'm using the following statement.
SELECT *
FROM tblSingletonUrquhartLibraryCatalogue
WHERE [Enter Keyword] In ([txtAuthors],[txtTitle],[txtSubjects],[txtDescription])