I am new to Full-Text search and learning about it. For what I tried so far searching my db using Full-Text search is much faster than the where statements with 'like'For instance Select Ai_Id,Ai_Texto FROM tblAvisosInternetWHERE CONTAINS(Ai_Texto, '%Toyota% AND %Yaris%')ORDER BY Ai_Id
takes less than 1 second to runwhereasSelect Ai_Id,Ai_Texto FROM tblAvisosInternetWHERE Ai_Texto like '%Toyota%' AND Ai_Texto like '%Yaris%'ORDER BY Ai_Id
takes more than 4 seconds But I am trying to figure out why the version with 'like' comes up with 622 rows whereas the version with Full-Text search retrieves only 552 rows. The difference being that Full-Text search does not seem to retrieve rows where words are "glued" together. Example the rows containing "TOYOTA YarisSport 2005...." is not listed whereas I am expecting it to be because it contains the word Yaris.What am I missing ?jean-lucwww.corobori.com