dtnmuyoiw680512744 2017-03-15 04:07
浏览 60
已采纳

如何将数据插入到同一行和列中 - mysql

I'm working on a project using PHP and MySQL. I want to know if I'm able to input multiple amounts of data into the same row and column.

For example:

id       leader_id      student_id
____________________________________
1     |       3      |  1, 2, 3
      |              |

So basically I want the user to input the team leader_id, and then the 3 other team member's ID. Also, I would like to know how I would be able to select each student_id individually.

  • 写回答

2条回答 默认 最新

  • dongtan8532 2017-03-15 04:09
    关注

    You could accomplish that but don't. Instead create a record for each leader_id to student_id combination so it will look like the following:

    id       leader_id      student_id
    ____________________________________
    1     |       3      |  1
    2     |       3      |  2
    3     |       3      |  3
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?