Hello. Can any one help me with FullTextSearch in MySql? I Have fullte
Hello. Can any one help me with FullTextSearch in MySql?
I Have fulltext enable in table Accounts.
Now i want to select username column with fulltext search.
I use this query:
SELECT PName
FROM accounts
WHERE MATCH(PName) AGAINST('fuas');
it should return 3 columns:
fuas
fuas2
fuas3
but it just return:
fuas
Can any one help me?