Jump to content

Relevance gives me: Incorrect arguments to MATCH


StefanRSA

Recommended Posts

Hi, been going with MySql for some time now (without any formal training!)... This is the first time I am dealing with a search where I am trying to do relevance... Now... After playing around to get the code working... I get the following MySql printed on the screen... Can you help please? Here is my code??? What am I doing wrong?

 

$squery = ("SELECT ads.subcatid AS subcatid, adsubcat.linkname AS sublink, ads.catid AS catid, 
  search_town.townLabel AS town, search_town.townFileName AS townlink, search_prov.provLabel,
  search_prov.provDirLabel AS provDirLabel, ads.id AS id,
  ads.header AS header, ads.location AS location, ads.sfield AS sfield,
  ads.text AS text, ads.R_rand AS R_rand, ads.addate AS addate,
  ads.r_option AS r_option, ads.userid AS userid, ads.adnr AS adnr,
  ads.username AS username, adfields.f_value AS fieldvalue,
  match (text, adfields.f_value) against ('%$trimmed%') as relevance
  FROM ads
  JOIN adsubcat ON adsubcat.id=ads.subcatid
  JOIN adcat ON adcat.id=ads.catid 
  JOIN adfields ON adfields.ad_id=ads.id
  JOIN search_town ON search_town.townLabel=ads.location
  JOIN search_region ON search_region.regionId=search_town.relRegionId
  JOIN search_prov ON search_prov.provId=search_region.relProvId
  WHERE match (text, adfields.f_value) against ('%$trimmed%' IN BOOLEAN MODE) 
  Order by relevance Desc") or die(mysql_error());
  $allads=mysql_query($squery) or die(mysql_error());

Link to comment
Share on other sites

Ok... I found some sort of solution... But still have a problem!?!?!

Apparently a MATCH cannot do a search on multiple columns in different tables... So we have to make use of the useful OR.... Now... My problem is... When testing this in phpMyAdmin the following code works fine....

SELECT ads.subcatid AS subcatid, adsubcat.linkname AS sublink, ads.catid AS catid, 
  search_town.townLabel AS town, search_town.townFileName AS townlink, search_prov.provLabel,
  search_prov.provDirLabel AS provDirLabel, ads.id AS id,
  ads.header AS header, ads.location AS location, ads.sfield AS sfield,
  ads.text AS text, ads.R_rand AS R_rand, ads.addate AS addate,
  ads.r_option AS r_option, ads.userid AS userid, ads.adnr AS adnr,
  ads.username AS username, adfields.f_value AS fieldvalue,
  match (adfields.f_value) against ('nissan') AS relevance,
  match (ads.text) against ('nissan') AS relevance1
  FROM ads
  JOIN adsubcat ON adsubcat.id=ads.subcatid
  JOIN adcat ON adcat.id=ads.catid 
  JOIN adfields ON adfields.ad_id=ads.id
  JOIN search_town ON search_town.townLabel=ads.location
  JOIN search_region ON search_region.regionId=search_town.relRegionId
  JOIN search_prov ON search_prov.provId=search_region.relProvId
  WHERE (match (adfields.f_value) against ('nissan' IN BOOLEAN MODE) OR match (ads.text) against ('nissan' IN BOOLEAN MODE)) 
  GROUP BY ads.id Order by relevance Desc,relevance1 Desc

 

When I put this in a php file to get the results with all the nice to look at features I still get the dreadful "Incorrect arguments to MATCH"

 

Does anybody out there know why this is not doing what it should in a Php file???

The code in my Php file looks as follow:

$squery = ("SELECT ads.subcatid AS subcatid, adsubcat.linkname AS sublink, ads.catid AS catid, 
  search_town.townLabel AS town, search_town.townFileName AS townlink, search_prov.provLabel,
  search_prov.provDirLabel AS provDirLabel, ads.id AS id,
  ads.header AS header, ads.location AS location, ads.sfield AS sfield,
  ads.text AS text, ads.R_rand AS R_rand, ads.addate AS addate,
  ads.r_option AS r_option, ads.userid AS userid, ads.adnr AS adnr,
  ads.username AS username, adfields.f_value AS fieldvalue,
  match (adfields.f_value) against ('nissan') AS relevance,
  match (ads.text) against ('nissan') AS relevance1
  FROM ads
  JOIN adsubcat ON adsubcat.id=ads.subcatid
  JOIN adcat ON adcat.id=ads.catid 
  JOIN adfields ON adfields.ad_id=ads.id
  JOIN search_town ON search_town.townLabel=ads.location
  JOIN search_region ON search_region.regionId=search_town.relRegionId
  JOIN search_prov ON search_prov.provId=search_region.relProvId
  WHERE (match (adfields.f_value) against ('nissan' IN BOOLEAN MODE) OR match (ads.text) against ('nissan' IN BOOLEAN MODE)) 
  GROUP BY ads.id Order by relevance Desc,relevance1 Desc") or die(mysql_error());
  $allads=mysql_query($squery) or die(mysql_error());

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.