Many-to-many relations in RDBMS databases

Posted by Industrial on Stack Overflow See other posts from Stack Overflow or by Industrial
Published on 2010-03-22T12:34:59Z Indexed on 2010/03/22 12:41 UTC
Read the original article Hit count: 516

What is the best way of handling many-to-many relations in a RDBMS database like mySQL?

Have tried using a pivot table to keep track of the relationships, but it leads to either one of the following:

  • Normalization gets left behind

  • Columns that is empty or null

What approach have you taken in order to support many-to-many relationships?

© Stack Overflow or respective owner

Related posts about mysql

Related posts about rdbms