how to save tags(keywords) in database?

后端 未结 3 2195
隐瞒了意图╮
隐瞒了意图╮ 2021-02-13 19:50

I want to create a simple tags system using php and mysql, so that users can add few tags via form. My question is that should i save the tags as an array in single database col

3条回答
  •  隐瞒了意图╮
    2021-02-13 20:39

    I would probably say neither. Use a many-to-many relationship between tags and the object being tagged. For instance, if the thing being tagged is a question, the tables could look like this:

    Question:
        QuestionId
        Title
        Body
    
    Tag:
        TagId
        Name
    
    QuestionTags:
        QuestionId
        TagId
    

提交回复
热议问题