You could create a new tables called, say, tags and which has two columns, say, postId and tagId
Then you have another table called, say, tag_values which has two columns, tagId and tagValue
Add your new tags to tag_values and search for tags on the table tags and associate them to the postId
Hope that makes sense.