I just want to update automatically a column of 2 tables linked with foreign keys. To more, these columns have to contain not just one value, but a list of values.
Here is my example :
Table Name : members
Member name : Demo User
Assigned Tasks : <List of tasks assigned to "Demo User">
Table Name : tasks
Task Name : Modeling
Assigned To : <List of users assigned to "Modeling">
In each table, I want to be able to insert value in the column, and the other table is automatically updated.
Example :
Table Name : members
Member name : Demo User
Assigned Tasks : Modeling,Mapping
Table Name : tasks
Task Name : Modeling
Assigned To : AUTOMATIC UPDATE ->Demo User
Task Name : Mapping
Assigned To : AUTOMATIC UPDATE ->Demo User
I tried with foreign keys (using innoDB), but I just succeed to insert one value in the column, and the other table was not updated automatically...
Thank you for your help !