MySQL Forums
Forum List  »  Full-Text Search

fulltext does not return but like does
Posted by: ersin kara
Date: March 28, 2010 07:49AM

Hi

"Fulltext" version of my query does not return any row
select *
from lyrics2
where match(artist, song)
against('believe' IN NATURAL LANGUAGE MODE);

But "like" version of it, returns many of rows
select * from lyric where song like '%believe%'
'Got To Believe'
'Believe It Or Not'
....

But if i change the search word it returns rows
select *
from lyrics2
where match(artist, song)
against('marilyn' IN NATURAL LANGUAGE MODE);

Why?

Regards

Options: ReplyQuote


Subject
Views
Written By
Posted
fulltext does not return but like does
3718
March 28, 2010 07:49AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.