Use the Like Operator in the criteria in a query.
For example, if your want to find the word Accountant in the JobTitle field in table tblEmployee, use Like "*Accountant*" in the criteria:
SELECT Employee, JobTitle
FROM tblEmployee
WHERE JobTitle LIKE "*Accountant*"
Look up Access' Help for more info on using the Like Operator.