Jump to content

MATCH query issue


Ltj_bukem

Recommended Posts

 

Hi,

 

I am trying to create a search facility that looks through two fields in a table. The table is called song and the two fields are

name, dance.

 

So far I have the following

 


$query = "SELECT name,dance FROM song WHERE MATCH name,dance AGAINST ('$search')";   

 

This query gives no results, but If I search only one field I get a good response, it's when I try two that the problem arises.

 

Cheer

 

Link to comment
Share on other sites

This seems to work

 


$query = "SELECT dance,name FROM song WHERE MATCH (dance) AGAINST ('$search') OR MATCH (name) AGAINST ('$search')"; 

 

Sometimes the user might type in a 3 letter word such as 'jig'. I know that there are some issues with words with less than 4 characters. I guess I could write some code to add a random letter to any word with 3 letters & hope that the search will pick it up.

 

Thanks

 

 

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.