在一个查询中比较 Postgres 中的两个值

Posted

技术标签:

【中文标题】在一个查询中比较 Postgres 中的两个值【英文标题】:Comparing two values in Postgres in one query 【发布时间】:2016-08-17 14:06:47 【问题描述】:

到目前为止,这是我的查询:

Select 
    class.title, studentClass.grade, count(studentClass.grade) 
from 
    classOffering 
inner join 
    studentClass on classOffering.classID = studentClass.classID
inner join 
    class on classOffering.classID = class.classID
group by 
    class.title, studentClass.grade
order by 
    count(studentClass.grade) desc

这是输出:

现在我想做的只是取回一门课最频繁的成绩。因此,我需要将软件开发 I 的成绩设为 B,因为 A 是班上最常见的成绩。但我不知道如何比较计数值。任何帮助都会很棒。

【问题讨论】:

【参考方案1】:
Select tableView.title, tableView.grade from (Select class.title as title, studentClass.grade as grade, count(studentClass.grade) as count from classOffering 
inner join studentClass on classOffering.classID = studentClass.classID
inner join class on classOffering.classID = class.classID
group by class.title, studentClass.grade
order by count(studentClass.grade) desc)as tableView group by tableView.title, tableView.grade;

【讨论】:

【参考方案2】:
WITH tableView1 as (Select class.title as title, studentClass.grade as grade, count(studentClass.grade) as count from classOffering inner join studentClass on classOffering.classID = studentClass.classID inner join class on classOffering.classID = class.classID group by class.title, studentClass.grade order by count(studentClass.grade) desc),
tableView2 as (select title,max(count) as count from tableView1 group by title),
tableView3 as (select tableView1.title as title,tableView1.grade as grade,tableView1.count as count from tableView1 inner join tableView2 on tableView1.title=tableView2.title AND tableView1.count=tableView2.count) select * from tableView3 order by title,grade,count;

【讨论】:

【参考方案3】:

如果您不需要计数(基于您的 cmets),您可以尝试这样的方法

select a.title,a.grade from 
(Select class.title, studentClass.grade, 
row_number() over (partition by class.title order by studentClass.grade) as rn 
from classOffering inner join studentClass on classOffering.classID = studentClass.classID
inner join class on classOffering.classID = class.classID
group by class.title, studentClass.grade)a
where a.rn=1;

下面的查询也会得到计数

select a.title,a.grade,a.gradeCount from 
    (Select class.title, studentClass.grade,
     count(studentClass.grade) over (partition by class.title) as gradeCount 
    row_number() over (partition by class.title order by studentClass.grade) as rn 
    from classOffering inner join studentClass on classOffering.classID = studentClass.classID
    inner join class on classOffering.classID = class.classID
    group by class.title, studentClass.grade)a
    where a.rn=1;

【讨论】:

我非常喜欢这个。不久前,我有一个数据库管理员向我展示了这个解决方案,但很快就忘记了。我真的需要将row_number() over (partition by ... order by ...) 语法提交到内存中。 嗯,我只是注意到你没有得到成绩出现的次数。这是获得所需答案的关键之一。 是的,你不能,但是 OP 在评论中提到他想要成绩而不是计数。所以我提出了这个......如果你需要计数,你必须加入这个查询另一个获取标题和计数然后匹配它们的查询。也许还有另一种方法可以通过使用相同的查询来获取计数..我不知道...【参考方案4】:

解决此问题的另一种常见方法是将表连接回自身。 Here is a SQL Fiddle that tests this answer:

SELECT T3.title, T3.grade, T2.maxcount
FROM (
    SELECT title, max(count) as maxcount
    FROM (
        Select class.title, studentClass.grade, count(studentClass.grade) as count
        from classOffering 
        inner join studentClass on classOffering.classID = studentClass.classID
        inner join class on classOffering.classID = class.classID
        group by class.title, studentClass.grade
    ) AS T1
    GROUP BY title
) AS T2 
JOIN (
    Select class.title, studentClass.grade, count(studentClass.grade) as count
    from classOffering 
    inner join studentClass on classOffering.classID = studentClass.classID
    inner join class on classOffering.classID = class.classID
    group by class.title, studentClass.grade
) AS T3 ON T2.title = T3.title AND T2.maxcount = T3.count
ORDER BY T3.title, T3.grade, T2.maxcount

但我认为 @cableload 的答案如果可以调整以考虑等级的最大出现次数会更好。

【讨论】:

以上是关于在一个查询中比较 Postgres 中的两个值的主要内容,如果未能解决你的问题,请参考以下文章

如何对具有纪元值的列进行 JOIN 查询,忽略 postgres 中的时间部分

Postgres & JPA 命名查询 - WHERE 中的任何 (*) 值

Postgres / Rails Active Record - 查询四舍五入的浮点值

在 postgres 上缓慢选择不同的查询

如何比较 Django 模板中的两个查询集?

使用一个查询递增具有唯一约束的字段中的一组值,Postgres