the wild card I think your looking for is % within the MySQL command.
so in the phrase "blue house"
so...
"%house" = TRUE;
"blue%" = TRUE;
"%blue" = FALSE;
"house%" = FALSE;
"%blue%" = TRUE;
"%house%" = TRUE;
example mysql command:
SELECT * FROM `table` WHERE `col` LIKE CONVERT( _utf8 '%blue%' USING latin1 ) COLLATE latin1_swedish_ci LIMIT 0 , 30