MySQL Forums
Forum List  »  Full-Text Search

No result for words : first, second, third,...
Posted by: QUANG NGUYEN
Date: May 02, 2006 08:27PM

Hi all !
My table has about 97.000 record and it has a lot of rows that contain words like : first, second, third,... But when I perform a query below:

SELECT name
FROM test_table
WHERE MATCH (name) AGAINST('first');//or "second", "third",...

it returns no result. But when I do this:

SELECT name
FROM test_table
WHERE name like '%first%';

I get results. I don't know why. Can anybody help me !
Thanks

Options: ReplyQuote


Subject
Views
Written By
Posted
No result for words : first, second, third,...
2829
May 02, 2006 08:27PM


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.