I have to design a schema to store objects that have many properties, but few in common.
I found some solutions here, but I'm still not convinced about the best thing to do. I see four ways of doing it :
- One table with many fields : this may lead to many
NULLvalues, and a hard time when the need comes to add some properties or modifiy some datatypes. - Creating a new table for each property : this makes adding and updating columns easy, and preserves the searching capabilities, though each
SELECTwill result in lots ofJOIN. - Creating a table for each type of property, eg: tags, quantities, intervals, etc. I'm not sure in that case if I need to distinguish floats, decimals, integers, etc.
- Creating abstract tables (I read here it's called Observation Pattern), that store the properties name and datatype.
Which criteria should I follow, which questions should I answer to choose between those solutions ?
Thanks