Just figured out that it appears the only way to map many-to-many relationship is via a junction table. Looking for advice on the pros and cons of the two approaches I've come up with.
SAMPLE_DATABASE:
table_01
-- table_01_id (pk)
-- table_01_data
table_02
-- table_02_id (pk)
-- table_02_data
Junction table (1)
junction_id (pk)
table_01_id (fk)
table_02_id (fk)
Junction table (2)
table_01_id (pk)
table_02_id (pk)
Guessing Junction table (2) is the way to go, but interested in knowing why.
Thanks!