I have two tables in my bank
membro, membro_grupo, grupo
The grupo
table has a column named id_grupo
which is the primary key in this table. The membro
table has a column named id_membro
which is also a primary key. The membro_grupo
table has two foreign keys, one call id_grupo
and another call id_membro
insert the code here, which makes association with the previous tables. But I made a small mistake when I created those tables. I forgot to put id_grupo
of table grupo
as auto-increment , and now I can not modify it. How do I make this exchange?