I have 2 tables MONSTER and ITEMS. Basically its layed out like this.
CODE
MONSTER TABLE
--------------------
m_id int (PK)
m_name varchar
m_level int
...etc
ITEMS TABLE
--------------------
i_id int (PK)
i_name varchar
i_nm int
I'm using them like this. item (Big sword with i_nm = 1) so the big sword drops off the monster of m_id of 1. I think this is what you call a 1 to 1 relationship. Later on I find out that the big sword with i_nm of 1 can also drop off another monster so it is a 1 to many.
I cant figure out how im going to alter my table to address this. I dont want to insert 2 similar items into the ITEMS table with 2 different i_nm ids to link them to each NM.

