我正在尝试定义一些 MySQL 关系。我有 3 个表格,如下所示:
employee:
| id | first_name | last_name | email
notifications: (notification names are email, post etc)
| id | name | description
employee_notifications:
| id | employee_id | notification_id |
更改employee_notifications 表以使用json_encode 在一行中插入员工的所有通知ID 是否有任何优势(或劣势)?
截至目前,大约有 100 名员工和 6 种通知方法。