I have 2 tables
Table:tag_tag_link
tag_id1|tag_id2
Table:tag
tag_id|tag_name
Now, I want to join these 2 tables, but with 2 join statement because each tag_id in tag_tag_link refer to the tag_id in tag...
what can I do, like this?
SELECT *
FROM tag_tag_link
LEFT JOIN tag ON tag1_id = tag_id
LEFT JOIN tag ON tag2_id = tag_id
surely that doe not seems right... any ideas?