What is generic implementation of many-to-many relationship?
there is no generic solution but it may be particular solution for each case
make primary key of one table to be a foreign key for other table
it can be implemented only within a single table
it requires to create an intermediate table that holds both sides of relationship
make database in accordance with first normal form
SQL question 3
Next question
Home
It generally requires to create an intermediate table that holds both sides of relationship.