No result for words : first, second, third,...
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
Subject
Views
Written By
Posted
No result for words : first, second, third,...
2885
May 02, 2006 08:27PM
2186
May 02, 2006 08:56PM
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.