How to insert, update, delete data with many to many relationed table of MYSQL?
E.g.:
**Structure of my database**
table A - ID, Field1, Field2, ...
table B- ID, Field1, Field2...
table Refer- ID, AID,BID
Is there any automatic reflects system in refer table when insert data in tables A or B?
For Example:
If I insert data in Table A
with corresponding data in table B
it will automatically reflects in Refer table based on Table A
and B
Relationships.
Please help me. Thanks in advance.