HI everybody.. need help on my database normalization design...
we have 2 tables which has many to many relationships the first has this fields
clients
CLIENTID CLIENTNAME
1 A
2 B
second table
pubblications
PUBID DESCRIPTION
1 PUBA
2 PUBB
these two has many to many relationship since client can have many pubblications and pubblications have many clients
I MADE A JUNCTION TABLE TO DEAL WITH IT...
table name clientpubs
the fields for the junction are
CLIENTID AND PUBID
MY PROBLEM IS IF it is possible to add more fields to the junction table for tyhe subscription like COUNT AND LANGUAGE or is it better to make a details table tab will INCLUDE
CLIENTID
PUBID
COUNT
LANGUAGE
ETC
thanks
alex