Usually fields type is usually stuck as one kind and you can't filter out the number only out of the results.
But lets say you want to find all items that have the word candy it would be
SELECT * FROM OITM WHERE ItemName LIKE '%%candy%%'
SQL server is not case sensitive so you will get results where it is lower and uppercase letter.