I am attempting to run a query on my database where I retrieve all results from the Employees table if there is a matching result in First_Name, Last_Name, or Title. For some reason the only category that returns a result is Title. If I type a name that I know is in the first name or last name I get no results. I'm new to SQL so any help would be appreciated.
Query: SELECT * FROM Employees WHERE First_Name OR Last_Name OR Title LIKE "Hollis"