I'm creating a webapp. I want to support tags. How do I set up the MySQL table? I want to relate a link with various tags.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The following format allows multiple tags per link and allows links to share the same tags. This allows you to easily see which links are popular, and at the same time avoid storing duplicate tags. Schema
Sample data:
Queries Links and tags:
Ten most popular tags:
|
|||||||||
|
|
||||
|
You could do something like:
So you would have tuples of (linkid,tag) |
||||
|
|