Django (web framework): What are good ways to model a many to many relationship without a intermediate table?
-
For example: Question and Answers In class Question i have a field called answers that is a many to many field. I want to use the Answer table to get all answer for a specific question. class Answer(models.Model): class Question(Post): answers = models.ManyToManyField(Answer) Generates: create table "answer" (...); create table "question_answers" ( "id" integer not null primary key, "question_id" integer not null, "answer_id" integer not null references "answer" ); create table "question" (...);
-
Answer:
Instead of an m2m, you should have a one-to-many, which you record on the many side... class Question(models.Model): ... class Answer(Model): question = models.ForeignKey(Question) Then, given a question you can get the answers: question.answer_set.all() More here: https://docs.djangoproject.com/en/dev/ref/models/relations/
Roger Barnes at Quora Visit the source
Other answers
Your specific sample can and should use one to many relations. Even if several answers have an answer with the exact same wording/value/etc. they should be stored in separated records. Simply think it as, you might need to modify a specific instant of similarly worded answer in the future.OTOH, "not using an intermediate table" in fact is not possible, as Django creates one for you if you define a m2m anyway. The point is that m2m relations require an intermediate jump point by definition. If you _really_ do not need a relational definition, you can leave it to the system. However keep in mind, many to many relations by their nature should have something to define that link's "reason". If you cannot find something to store in intermediate table, you probably do not need m2m.
Can Baysal
Related Q & A:
- What are good ways to save up for an iPod Touch?Best solution by wikihow.com
- What are good ways to promote my website?Best solution by Yahoo! Answers
- What are easy ways of writing a good essay?Best solution by Quora
- What are some good ways to advertise a business?Best solution by ChaCha
- What are good ways to get the "Last Second Bid" on eBay successfully?Best solution by ebay.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.