Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
193 views

“Master” associative table?

Consider a model for matching clients and sevices. Clients may be both providers of and consumers of services at various times. Clients may be individuals or groups (companies), the latter having ...
2
votes
3answers
96 views

MySQL many to many relationship matching

I'm making a cocktail database, and right now I have three tables: drinks has columns drinks_id and drinks_name ingredients has columns ingredients_id and ingredients_name The third is a simple ...
0
votes
2answers
560 views

SQL Associative Entity question

I have a SQL question. I'm working with the following set of tables: http://imgur.com/eg19r.png The Recipe table contains 5 recipes, Ingredient contains many ingredients (52), and IngredientList is ...
0
votes
2answers
98 views

Which schema does this associative table belong to?

I was going over AdventureWorks2008 database and wanted to create a new table that associates a product to a sales person. There is a many-to-many relationship between those tables. The question ...