My database consists of 3 tables (one for storing all elements, one for tags and one for the relationship between them):
Table: Message Columns: PostID, Name, Desc
Table: Tag Columns: TagID, Name
Table: PostTag Columns: PostID, TagID
What is the best way to keep a row separated by space (for example, "smart funny wonderful") in the 3 table tables shown above?
Ultimately, I will also need to get the tags and display them again as a string. Thank!
source
share