Im attempting to develop a database which can store arbitrary lists of data and am looking for suggestions on design. What I want is to be able to have a list I can associate to other tables (such as a user) to a set of data points. I have simplified my current idea, but here is my current design:
DataListTable:
DataListId
DataElementTable:
DataListId, DataId, DataTypeId, DataValue, Description
Is there a better design or a more efficient way to design this? Thanks!
DataListTable:
DataListId
DataElementTable:
DataListId, DataId, DataTypeId, DataValue, Description
Is there a better design or a more efficient way to design this? Thanks!
