views:

24

answers:

1
SELECT p.id, p.title, p.uri, 'post' AS search_type
FROM `posts` AS p 
WHERE title LIKE "%logo%" 

UNION ALL 

SELECT p.id, p.title, p.uri, 'tag' AS search_type
FROM posts AS p 
INNER JOIN post_tags AS pt ON pt.post_id = p.id 
INNER JOIN tags AS t ON pt.tag_id = t.id 
WHERE t.title LIKE "%logo%"

UNION ALL

SELECT p.id, p.title, p.uri, 'category' AS search_type
FROM posts AS p 
INNER JOIN post_categories AS pc ON pc.post_id = p.id 
INNER JOIN categories AS c ON pc.category_id = c.id 
WHERE c.title LIKE "%logo%"

GROUP BY p.id
LIMIT 30

I am trying to group the post ID's so I do not return duplicate search results, but for some reason there are duplicates even when I use the GROUP BY p.id. Can someone tell me what I am doing wrong?

+1  A: 

The GROUP BY will group results of your third part of query only. It will first GROUP, then UNION.

Enclose the whole query into a subquery and GROUP on it.

eumiro