いくつかの 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 |
json_encode を使用して従業員のすべての通知 ID を 1 つの行に挿入するように employee_notifications テーブルを変更することに利点 (または欠点) はありますか?
現在、100 人の従業員と 6 つの通知方法があります。