Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

greetings.

I have a table full of songs full of data (artist, songname, link, etc). I want to set up a relationships with tags. In the end, I want to search by tag and return a playlist of relevant songs.

here is what I was thinking: (rough pseudo code):

TABLE songs(
id int(16) primary index,
...
)

TABLE tags (
id int(16) primary index,
...
)

TABLE taggedAs (
songId int(16),
tagId int(16),
songId foreign key songs(id),
tags foreign key tags(id)
)

however these seems sucky because whenever i want to tag I have to do operations on each of the three tables. if I could use something like mongodb (oh i wish), i would just store an array of tagnames on the songs.

also, it'd be nice to have related tags, but I don't know if that is possible with this design.

share|improve this question
2  
Read this MySQL Forge TagSchema Article, it should provide a ton of help. – Khez Apr 30 '11 at 1:52
Why would you have to do operations on all three tables when you tag a song? You should only have to update taggedAs. – Explosion Pills Apr 30 '11 at 4:11
well I'd want to add a taggedAs, but I'd have to check if the tag already exists: if so, find it's id. if not, insert it and return the id. – matt Apr 30 '11 at 4:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.