比如我的网站 有以下频道:新闻,软件,视频,动画 4个频道有4张表
[news] --新闻UpdatesID --对应[Updates].ID
[soft] --软件 UpdatesID --对应[Updates].ID
[video] --视频 UpdatesID --对应[Updates].ID
[Gif] --动画UpdatesID --对应[Updates].ID
还有一张更新表,当 insert into [news],或[soft]、[video]、[gif] 的时候同时插入 [Updates][Updates]IDChannelKey --频道标识值为:news ,soft ,video, gif 中的一个Title --标题Descript --描述Thumbnails --缩略图
[Comments] --评论表ChannelKey --频道标识值为:news ,soft ,video, gif 中的一个UpdatesID --对应[Updates].IDContent --评论内容IP --所在IPCity --IP所在城市地区ReplyID --回复的IDDateTime --评论时间
[Comments]评论表 数据量是比较大的,想做分区表,根据[Comments].ChannelKey 和 [Comments].UpdatesID 进行分区
分区之后会如下:
-------------------soft([Comments].ChannelKey)-------------------1-100000 100001-200000 200001-300000 -------([Comments].UpdatesID 区间)
-------------------news([Comments].ChannelKey)-------------------1-100000 100001-200000 200001-300000 -------([Comments].UpdatesID 区间)
-------------------video([Comments].ChannelKey)-------------------1-100000 100001-200000 200001-300000 -------([Comments].UpdatesID 区间)
-------------------gif([Comments].ChannelKey)-------------------1-100000 100001-200000 200001-300000 -------([Comments].UpdatesID 区间)
1 回答
- 1 回答
- 0 关注
- 817 浏览
添加回答
举报
0/150
提交
取消