I have a table called objectives, each objective has zero to many cause-effect relationships with other objectives, these relationships I have to be stored in the database, let me know if there's a way to relate this table records.
feedback
|
|
There is not a way to relate the records without creating an additional table (you would need N-1 additional columns on your current table to model the N possible effects of a cause). Creating an additional table like the one below should serve your purpose.
Apply FKey behaviour as applies. | |||
|
feedback
|