vote up 1 vote down star
2

i have 3 tables:

links (id, linkName)  
tags (id, tagName)  
tagsBridge (tagID, linkID)

i am trying to support showing related tags like in SOF. so if you click on tags "XYZ", right now i am showing all the links with tag "XYZ" but i also want to show the distinct list of all other tags that people have tagged those items that also have tagged" "XYZ"

what is the fastest way to query this

flag

This is probably a duplicate question. I haven't fully asserted this but by searching SO with "stackoverflow tag related" keywords, you'll find plenty of prior art. – mjv Oct 30 at 5:54

3 Answers

vote up 3 vote down check

Try:

  SELECT t.tagname
    FROM TAGS t
    JOIN TAGS_BRIDGE tb ON tb.tagid = t.id
    JOIN (SELECT li.id
            FROM LINKS li
            JOIN TAGS_BRIDGE tb ON tb.linkid = li.id
            JOIN TAGS t ON t.id = tb.tagid
           WHERE t.tagname = 'XYZ') x ON x.id = tb.linkid
GROUP BY t.tagname
link|flag
rexem. one more question, what if i have selected multiple tags. so i want to see related tags and i already filtered down on tagName ="XYZ" and tagname = "ABC" ?? – oo Oct 31 at 13:19
vote up 1 vote down

A very ugly nested query.

SELECT DISTINCT tagName FROM tags WHERE id in
(
    SELECT tagID FROM tagsBridge WHERE linkID IN
    (
        SELECT linkID FROM tagsBridge WHERE tagID IN
        ( 
            SELECT id FROM tags WHERE tagName like 'XYZ'
        )
    )
)
link|flag
3  
Don't beat yourself, at least you made it look pretty by using proper indentation. – Esko Oct 30 at 6:38
this doesn't seem to work as it returns 0 records always it seems – oo Oct 31 at 3:17
+1 Tested this and it works. It's also is more efficient than the accepted answer. – Andomar Oct 31 at 10:34
vote up 0 vote down

Edited: now this is basically is just a different way of writing Kirk Broadhurst's, I think. I guess some DB might handle it differently behind the scenes, but I think almost all modern engines would end up with the two of them having the same query plan.

select distinct t.tagName
from tags t
    join tagsBridge tb on (t.id = tb.tagID)
    join tagsBridge tbt on (tb.linkID = tbt.linkID)
    join tags ta on (ta.id = tbt.tagID)
where ta.tagname = 'XYZ'
link|flag
The DISTINCT in the IN clause isn't necessary - the tagnames are the only thing you need to be unique. – OMG Ponies Oct 30 at 15:44

Your Answer

Get an OpenID
or

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