Data modeling for Same tables with same columns

前端 未结 2 1657
星月不相逢
星月不相逢 2020-12-21 17:04

I have many tables that have same number of columns and names because they are all lookup tables. For example, there are LabelType and TaskType tables. LabelType and TaskTyp

2条回答
  •  别那么骄傲
    2020-12-21 17:55

    Keep your lookup tables separate. It's faster at lookup time, and you will do millions of lookups between times when you add a new lookup table.

    A lot of tables is not a big problem.

提交回复
热议问题