Hi,
I am executing following query:
SELECT *
FROM `table` AS video
WHERE video.public_private = 'public'
AND MATCH (
title, tags, description
)
AGAINST (
'avi'
)
AND video.published =1
But, it doesn't display the proper records matching with the text 'avi'. It exists in the field name "description" but it shows:
MySQL returned an empty result set (i.e. zero rows).
Please suggest how to solve this query...
Thanks
Anuj