当前位置: 代码迷 >> Sql Server >> 这个表如何设置
  详细解决方案

这个表如何设置

热度:6   发布时间:2016-04-24 21:58:15.0
这个表怎么设置!
我有一组数据 

ID (int)   Ints(List<int> list的长度8-5000不等)  lTye(Enum)  怎设计表格

我的现在思路是
表格1
AutoId (自动增长)
ID
lType
Ints(定义为binary(32))

表格2
RAutoId (引用表格的AutoId)
Ints(定义为binary(32))

......

以此类推! 一直将Ints 的所有数据保存。


请问这样的效率怎么样。 怎么设置才好

谢谢大家


------解决方案--------------------
如果是你这样设计,那直接存在一个表中更好
  相关解决方案