0

我正在使用以下设计为我的网站创建表格

设计一

在此处输入图像描述

设计二

在此处输入图像描述

由于不是每个注册的用户都会尝试挑战,因此设计 1很适合。在插入第三个表时,表 2 的分数会相应更新。但是 user_id 字段变得多余。

设计 2 中的每个用户都设置了 0 或 NULL 值,但仍未标准化。什么是最佳设计?规范化或关键在组织中有多重要?

4

1 回答 1

2

编辑

对于未来的人 - 我在理解 OP 的要求时遇到了一些问题,所以如果你有点迷失,请仔细阅读评论。最终,他们希望存储聚合数据,但不知道将其放在哪里或如何实现。解决方案基本上是使用插入触发器,这在本文末尾附近进行了解释。

我选择在表中添加另一列user来存储user_problem.score. user_id但是,创建一个新表(带有和列total_sum)并不是一个糟糕的选择,即使它似乎过度使用了规范化。有时最好将不断更新的数据与很少更改的数据分开。这样,如果出现问题,您就知道您的静态数据是安全的。

我从未涉及过的其他事情是与存储聚合数据相关的数据并发性完整性问题......所以要注意这一点。


我会建议这样的事情:

User Table
User_ID  -  Email  -  Name  -  Password  -  FB_ID 
-- holds all the user information 


Problem Table
Problem_ID  -  Problem_Title  -  Problem_Descr 
-- holds all the info on the individual challenges/problems/whatever


User_Problem Table
User_Problem_ID  -  User_ID  -  Problem_ID  -  Score  -  Completion_Date
-- Joins the User and Problem tables and has information specific
-- to a user+challenge pair 

这假设用户可以接受许多挑战/问题。一个问题/挑战可以由多个用户承担。

要查看某个用户的所有问题,您可以执行以下操作:

select  user.user_id, 
        user.name,
        problem_title, 
        problem_descr, 
        user_problem.score, 
        user_problem.completed_date

from    user 

        join user_problem on user.user_id = user_problem.user_id 

        join problem on user_problem.problem_id = problem.problem_id 

where   user.user_id = 123 or user.email = 'stuff@gmail.com'

字段的长度varchar相当通用......

create table User(
  User_ID   int unsigned auto_increment primary key,
  Email     varchar(100), 
  Name      varchar(100), 
  Password  varchar(100), 
  FB_ID     int
); 

create table Problem (
  Problem_ID    int unsigned auto_increment primary key,
  Problem_Title varchar(100), 
  Problem_Descr varchar(500)
); 

create table User_Problem (
  User_Problem_ID int unsigned auto_increment primary key, 
  User_ID         int unsigned,
  Problem_ID      int unsigned, 
  Score           int,
  Completion_Date datetime,

  foreign key (User_ID) references User (User_ID), 
  foreign key (Problem_ID) references Problem (Problem_ID)
); 

在我们从下方评论中的对话之后......您将向用户添加一列:

User Table
User_ID  -  Email  -  Name  -  Password  -  FB_ID  -  Total_Score

我给该列的默认值是 0,因为如果该人没有任何相关的问题/挑战,您似乎想要/需要它。根据其他情况,unsigned如果您有一条规定永远不会有负分的规则,那么将其设为 int 可能会对您有所帮助。

alter table user add column Total_Score int default 0;

user_problem然后...您将在影响表的表上使用插入触发器user

CREATE TRIGGER tgr_update_total_score 

AFTER INSERT ON User_Problem 
FOR EACH ROW

  UPDATE User
     SET Total_score = Total_score + New.Score
   WHERE User_ID = NEW.User_ID;

所以...在将一行添加到 后User_Problem,您会将新分数添加到user.total_score...

mysql> select * from user;
+---------+-------+------+----------+-------+-------------+
| User_ID | Email | Name | Password | FB_ID | Total_Score |
+---------+-------+------+----------+-------+-------------+
|       1 | NULL  | kim  | NULL     |  NULL |           0 |
|       2 | NULL  | kyle | NULL     |  NULL |           0 |
+---------+-------+------+----------+-------+-------------+
2 rows in set (0.00 sec)

mysql> insert into user_problem values (null,1,1,10,now());
Query OK, 1 row affected (0.16 sec)

mysql> select * from user;
+---------+-------+------+----------+-------+-------------+
| User_ID | Email | Name | Password | FB_ID | Total_Score |
+---------+-------+------+----------+-------+-------------+
|       1 | NULL  | kim  | NULL     |  NULL |          10 |
|       2 | NULL  | kyle | NULL     |  NULL |           0 |
+---------+-------+------+----------+-------+-------------+
2 rows in set (0.00 sec)

mysql> select * from user_problem;
+-----------------+---------+------------+-------+---------------------+
| User_Problem_ID | User_ID | Problem_ID | Score | Completion_Date     |
+-----------------+---------+------------+-------+---------------------+
|               1 |       1 |          1 |    10 | 2013-11-03 11:31:53 |
+-----------------+---------+------------+-------+---------------------+
1 row in set (0.00 sec)
于 2013-11-03T16:59:06.560 回答