如何获得一个表的最小值和最大值并用它创建另一个表?

时间:2019-02-25 15:58:54

标签: mysql inner-join

我有下表。

STUDENTS
    +------+----------------+
    | stuID| StuStatus      |
    +------+----------------+
    | 1001 | 1              |
    | 1001 | 3              |
    | 1002 | 1              |
    | 1003 | 6              |
    | 1004 | 1              |
    | 1002 | 4              |
    | 1001 | 6              |
    | 1005 | 1              |
    | 1005 | 4              |
    +------+----------------+
DESCRIPTION

    +-------+--------------------------+
    | statID| StatusDesc              |
    +-------+-------------------------+
    |    1  | Application Submitted   |
    |    2  | Application Accepted    |
    |    3  | Application Pending     |
    |    4  | Application Resubmitted |
    |    5  | Application Denied      |
    =+------+-------------------------+

我如何利用内部联接创建一个表格,以单词的形式显示每个学生及其起点和终点?

这是我现在脑海中的逻辑流程:

  1. 创建两个表,它们的列都为stuID和stuStatus。 表格将分别显示每个学生的最小和最大stuStatus。

  2. 使用内部联接创建一个新表,在该联接中,我将description连接到表2和3。

但是,我不清楚应该如何去做,并希望获得一些帮助。

谢谢。

1 个答案:

答案 0 :(得分:0)

您应该首先为每个学生确定最低和最高状态,然后将这些数字转换为相应的描述。
像这样:

SELECT stu_stat.stuID,
       min_desc.statusDescr AS MinDescription,
       max_desc.statusDescr AS MaxDescription
FROM
(
SELECT StuID,
       MIN(StuStatus) AS MinStatus,
       MAX(StuStatus) AS MaxStatus
FROM   students
GROUP BY StuID
) AS stu_stat
JOIN   descr_table AS min_desc
  ON   stu_stat.MinStatus = min_desc.StatID
JOIN   descr_table AS max_desc
  ON   stu_stat.MaxStatus = max_desc.StatID;

我没有尝试过...