欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

拥有5星评级数据库表结构 如何才能更高效的使用?

程序员文章站 2024-02-18 13:13:52
产品数据库设计时,经常遇到5星评价的情况,数据表如何设计才能即保证查询效率,又能减少数据冗余呢? 初步设计思路如下,请大家指正。 一,最终效果, 二,表结构复制...
产品数据库设计时,经常遇到5星评价的情况,数据表如何设计才能即保证查询效率,又能减少数据冗余呢?

初步设计思路如下,请大家指正。

一,最终效果,

拥有5星评级数据库表结构 如何才能更高效的使用?

二,表结构

复制代码 代码如下:

create table if not exists `books` (
  `id` int(8) not null auto_increment,
  `title` varchar(50) not null,
`vote_1` int(8) unsigned not null,
`vote_2` int(8) unsigned not null,
`vote_3` int(8) unsigned not null,
`vote_4` int(8) unsigned not null,
`vote_5` int(8) unsigned not null,
`avgrate` int(8) unsigned not null,
`amountofvotes` int(8) unsigned not null,
  primary key  (`id`)
) auto_increment=1 ;

create table if not exists `users` (
  `id` int(8) not null auto_increment,
  `username` varchar(20) not null,
  primary key  (`id`)
) auto_increment=1 ;

create table if not exists `votes` (
  `uid` int(8) unsigned not null,
  `bid` int(8) unsigned not null,
  `vote` int(1) not null,
  primary key (`bid`, `uid`)
) ;


三,设计思路

数据表分为两个部分,

1,第一个部分,表votes。其中uid和bid设为了主键,这样防止一个用户多次投票的情况;

查询时,可以使用,

复制代码 代码如下:

平均分:select avg(vote) from votes where bid = $bid;

评价总数: select count(uid) from votes where bid = $bid;


如果有时间排序的需求,可以再增加一个时间戳字段。

2,第二部分,冗余部分

vote_1到vote_5,仅记录每一个级别评分的数量,有评分了则+1;

avgrate记录平均分;
amountofvotes记录总分;

其中avgrate和amountofvotes通过计算vote_1到vote_5得到,这样减少了对表votes的大量查询。

如果配合评论,那么评论中增加关联即可,

复制代码 代码如下:


create table if not exists `comments` (
               `id` int(11) unsigned not null auto_increment,
               `rating_id` int(11)  unsigned not null default 0,
               primary key ( `id` )
)


四,继续优化需要思考的问题

votes表中的数据量会是book中数据量的n倍,这种设计也便于votes的分表,不影响快速查询。