I have applied the full-text index on two fields (title, description) of an existing table. This table already has 7000 - 8000 records. I
Search is not working as expected, even I provide full title in the search field but let me record that at the top Can not find and there are some unreliable records also available
After adding a full text index, there is no need to re-insert all the records in the table? Or the problem may be there
Here is the query for reference:
select f f_table from where match (f.tit, f.des) against (' Route Man Vocal 4 ') It does not appear to be the' Mana Vocal 4 'record on the top. At its fourth position here, there is an extension of the first four records:
# (tita) (das) --------------------- --- ----------------------------------------------- --- ------- 1) way singing 1.wav male way King 2) way Jah DNB way Increase Jah DNB singing reggae 3) Journey Man singing 2 way Man singing Download 2 4) Journey Man Come singing-tune singing 4 way Man singing 4 songs This is just an example
Please help, thanks in advance ...
Another question:. Is there a way to give more priority to a field (tit) than other (des)?
Try it :: << >> SELECT *, MATCH (f.tit, f against Kdes) ( "Journey Man Vocal 4 ') relevance as f_table f WHERE MATCH (f.tit, f.des) on the basis of relevance (" Journey Man Vocal 4') order
Comments
Post a Comment