My database consists of 3 tables (one for storing all items, one for the tags, and one for the relation between the two):
Table: Post Columns: PostID, Name, Desc
Table: Tag Columns: TagID, Name
Table: PostTag Columns: PostID, TagID
What is the best way to save a space separated string (e.g. "smart funny wonderful") into the 3 database tables shown above?
Ultimately I would also need to retrieve the tags and display it as a string again. Thanks!