我有一个html表单,其中包含<select>
用户和用户角色的复选框。这些值存储在以下mysql表中:
UserId | RoleId |
1 | 1 |
1 | 3 |
1 | 4 |
2 | 2 |
...
假设我需要编辑UserId = 1
的角色,我只需要RoleId = 1 and 3
。然后PHP将最初存储的RoleIds 1,3,4的值返回到表单的复选框中。然后我取消选中RoleId = 4
的复选框并点击保存。
我应该使用哪些mysql代码来处理此更新?