vote up 1 vote down star

I was wondering if it is bad practice to have a file_table { id, name, status} and a extra_data table { id, fileId FK(file.id), otherData}. So far all my tables go forward and I never needed to get the id of one table then do a query to get more data using an id.

Is this bad practice and if so then why?

flag

41% accept rate
Why do I think of Arby's when I look at your rep? – mmyers Nov 5 at 19:03
@mmyers reminds me of a television phone number (555-555-5555) – Matthew Jones Nov 5 at 19:06
2  
SOMEBODY RUINED IT! – mmyers Nov 5 at 19:06
en.wikipedia.org/wiki/555_(telephone_number/…) -- you'd be surprised the number of people who haven't noticed it's widespread use in movies, tv, etc. – onedaywhen Nov 6 at 10:05

4 Answers

vote up 4 vote down check

This is not a bad practice In fact it is how a robust design should look. Right now you established a 'relationship' with tables file and extra_data. However, in order the DB is normalized you should account the cardinality of the relationship between tables. Depending on that cardinality you will know how to place the FK or maybe you ended up creating a new relationship table. More on cardinality could be found here

link|flag
Agreed, the details are too vague to specify the required cardinality. If all columns are NULL-able then they don't even have a key! – onedaywhen Nov 6 at 10:10
vote up 3 vote down

there is nothing wrong with this.

link|flag
vote up 5 vote down

This is perfectly fine. Your table designed as laid out, establishes that one file_table record can be associated with 0 or more extra_data records. However, one extra_data record can only be associated to one file_table record.

What do you mean by going backwards?

link|flag
vote up 0 vote down

I can't think of any other way to implement of collection of items associated with some other item. What am I missing here?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.