How would I retrieve records that have fields containing an exact word as opposed to part of a word? Because if I want to find someone's name in a description, say "Tim", I could use the SQL words WHERE Description LIKE '%Tim%' . However, I retrieve records that have the word such as "Time". Without the percentage symbols, the entire field would have to match, correct?