Skip to content
Advertisement

3 Dimensional Database in SQL [closed]

I have a question. how do I store 3 dimensional data?
This is an example. Every user should fill this field.

2 Dimension

enter image description here

Advertisement

Answer

I would approach this by using three related tables:

  • User
  • RelativeType
  • UserRelativeInfo

They would be related like this:

enter image description here

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement