Tagged Questions

8
votes
7answers
3k views

Design 1-to-1 relationship DB tables?

A DB design question: when do you decide to use 1 to 1 relation tables? One of the places I see this is, for example, when you have a User and UserProfile table, people split them instead of putting ...
1
vote
3answers
63 views

Restructure tables on an existing website, to store historical data?

I've been trying to find a match for my issue in existing questions, and I'll accept links as an answer and close my question if you have them. What I'm trying to find is a way to restructure my ...
1
vote
1answer
89 views

Stock management of assemblies and its sub parts (relationships)

I have to track the stock of individual parts and kits (assemblies) and can't find a satisfactory way of doing this. Sample bogus and hyper simplified database: Table prod: prodID 1 prodName Flux ...
0
votes
3answers
66 views

Database design - doubt in mapping the relationships

I am having confusion in designing the database. Its a Subscription based application : One Subscription can have multiple display devices. While Subscribing, the user will be asked to select one ...
0
votes
5answers
327 views

Foreign keys and NULL in mySQL

Can I have a column in my values table (value) referenced as a foreign key to knownValues table, and let it be NULL whenever needed, like in the example: Table: values product type value ...
0
votes
1answer
1k views

Finding extra columns in a many to many relationship table

I wish to persist some extra data in a many-to-many relationship by having some extra fields in the association table. For instance, I would like to keep track of what role a user has in a network, ...
0
votes
8answers
153 views

Database Design: Storing the primary key as a separate field in the same table

I have a table that must reference another record, but of the same table. Here's an example: Customer ******** ID ManagerID (the ID of another customer) ... I have a bad feeling about doing this. ...
0
votes
5answers
172 views

Do I need to define a new primary key field for each table?

I have a few database tables that really only require a unique id that references another table e.g. Customer Holiday ******** ******* ID (PK) ---> CustomerID (PK) Forename From ...
0
votes
7answers
285 views

Conflicting desires in Database Design, with fields of two similar functions

Okay, so I'm making a table right now for "Box Items". Now, a Box Item, depending on what it's being used for/the status of the item, may end up being related to a "Shipping" box or a "Returns" box. ...