php - Fulltext search not working when searching the exact title -
php - Fulltext search not working when searching the exact title -
i'm trying larn how utilize fulltext search mysql database. @ point i've created column search , query run, won't homecoming row though exact match content inside.
my table:
+-------------+ | id | title | +-------------+ | 1 | hamlet | +-------------+
and sql i'm using search.
select * table match(title) against ('hamlet') limit 30;
i ran query in phpmyadmin, , returned
-mysql returned empty result set (i.e. 0 rows). ( query took 0.0012 sec )
the title there. there 1 row in database @ point. ideas why isn't working. it's new, i've been reading lot on it, think i'm doing right, i'm not.
php mysql
Comments
Post a Comment