vote up 1 vote down star

I've never done searching from MYSQL before, but I need to implement a search. I have three tables, 'articles', 'articles_tags', and 'tags'.

'articles' holds the first thing I would like to search on, the 'title' field.

'articles_tags' is a pivot table which relates 'articles' and 'tags' together. 'articles_tags' has two fields: 'articles_id' and 'tag_id'.

'tags' holds the second thing I would like to search on, the 'name' field.

My problem is, I need a way to search the 'title' field, and each of the tags that relate to that article ('tags.name') and return a relevancy (or sort by relevancy) for article.

What would be a good way to implement this? I'm pretty sure it can't be done from just one query so two queries, and then 'mixing' the relevancies together, would be ok.

Thanks.

Edit: Forgot to say, if I could give more weighting to matching a tag than matching a word in the title, that would be awesome. I'm not really asking for anyone to write the thing, but give me some direction. I'm a bit of a newbie in both PHP and MySQL.

flag

25% accept rate

3 Answers

vote up 0 vote down

Starting from the answer given by @james.c.funk but making some changes.

SELECT a.id, a.title, 
  MATCH (a.title) AGAINST (?) AS relevance
FROM articles AS a
LEFT OUTER JOIN (articles_tags AS at
  JOIN tags AS t ON (t.id = at.tag_id AND t.name = ?))
  ON (a.id = at.article_id)
WHERE MATCH (a.title) AGAINST (? IN BOOLEAN MODE) 
ORDER BY IF(t.name IS NOT NULL, 1.0, relevance) DESC;

I assume you want tag matches to match against the full string, instead of using a fulltext search.

Also using one left outer join instead of two, because if a join to articles_tags is satisfied, then surely there is a tag. Put the tag name comparison inside the join condition instead of in the WHERE clause.

The boolean mode makes MATCH() returns 1.0 on a match, which makes it useless as a measure of relevance. So do an extra comparison in the select-list to calculate the relevance. This value is between 0.0 and 1.0. Now we can make a tag match sort higher by treating it as having relevance of 1.0.

link|flag
vote up 0 vote down

This quick demo query is far from optimized but should be a good starting point

SELECT * FROM
(SELECT a.id, a.title, 
MATCH (a.title) AGAINST ('$s_search_term') AS title_score,
SUM(MATCH (t.name) AGAINST ('$s_search_term')) AS tag_score
FROM articles AS a
LEFT JOIN articles_tags AS at
ON a.id = at.article_id
LEFT JOIN tags AS t
ON t.id = at.tag_id
WHERE MATCH (a.title) AGAINST ('$s_search_term') 
OR MATCH (t.name) AGAINST ('$s_search_term')
GROUP BY a.id) AS table1
ORDER BY 2*tag_score + title_score DESC

You may want to normalize tag_score by dividing it by COUNT(t.id). Sorry but it's easier to give the query than to explain how to make it.

link|flag
vote up 0 vote down

Funny it is the 3rd question about pretty much the same problem I see in 2 days, check out these two posts: 1, 2

link|flag
I looked at those two but fail to see how they relate to my problem. – james Sep 2 at 3:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.