Tagged Questions
5
votes
3answers
164 views
MySQL: Getting Posts from Categories
I'm trying to learn MySQL so I have created a little blog system.
I have 3 tables in MySQL:
posts :
id | title
----------------
1 | Post Title 1
2 | Post Title 2
...
0
votes
1answer
1k views
Finding extra columns in a many to many relationship table
I wish to persist some extra data in a many-to-many relationship by having some extra fields in the association table. For instance, I would like to keep track of what role a user has in a network, ...