I know this query returns all rows that contains white :
SELECT COUNT(*) FROM MyTable WHERE Title like '%white%'
But I want to get rows like "white rose" not like "whiterose". How can I edit that query to get only contains "white" as a single word? Thanks in advance.