I thought it was alias for simple foreign key relation,but seems not.
Can you take MySQL as an example what is association relation?
I guess it means many2many relation,is that true?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You confuse
relationandrelationshiphere. These are different concepts.An association relationship is a class theory concept. This is a relationship between two or more entities that does not imply any limitations on their life cycles.
Say, friendship is an association relationship: a person can be a friend to one or more persons, but when the friendship ends, no actual persons are erased from existence.
In relational databases, this is usually represented with a many-to-many link table with
FOREIGN KEYreferences to the tables holding primary keys of the entities associated.