- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我喜欢做一些简单的事情,但我不知道从哪里开始。
所以我有 4 张 table :
- Table question (id_question)
- Table trad (id_trad, #id_question)
- Table vote_up (id_vote_up, #id_trad)
- Table vote_down (id_vote_down, #id_trad)
对于 id_question=1,我想选择 vote_up 数量较高且 vote_down 数量较低的 4 个翻译(来自 trad)
是否可以通过单个查询来完成此操作?有什么想法吗?
或者也许简单地添加“upvotes”和“downvotes”并将相应字段更新 1 更好?
最佳答案
计划
<小时/>
- get count of upvotes grouped by each trad
- get count of downvotes grouped by each trad
- left join all trad to above datasources with score function, order by and limit of 4
输入示例
create table question
(
id_question integer primary key not null
-- other metadata here..
);
create table trad
(
id_trad integer primary key not null,
id_question integer not null,
foreign key ( id_question ) references question ( id_question )
);
create table vote_up
(
id_vote_up integer primary key not null,
id_trad integer not null,
foreign key ( id_trad ) references trad ( id_trad )
);
create table vote_down
(
id_vote_down integer primary key not null,
id_trad integer not null,
foreign key ( id_trad ) references trad ( id_trad )
);
insert into question
( id_question )
values
( 1 )
;
insert into trad
( id_trad, id_question )
values
( 1, 1 ),
( 2, 1 ),
( 3, 1 ),
( 4, 1 ),
( 5, 1 ),
( 6, 1 ),
( 7, 1 )
;
insert into vote_up
( id_vote_up, id_trad )
values
( 1, 1 ),
( 2, 1 ),
( 3, 1 ),
( 4, 1 ),
( 5, 1 ),
( 6, 1 ),
( 7, 3 ),
( 8, 3 ),
( 9, 3 ),
( 10, 3 ),
( 11, 4 ),
( 12, 4 ),
( 13, 5 ),
( 14, 6 ),
( 15, 6 ),
( 16, 7 ),
( 17, 7 ),
( 18, 7 )
;
insert into vote_down
( id_vote_down, id_trad )
values
( 1, 1 ),
( 2, 1 ),
( 3, 1 ),
( 4, 1 ),
( 5, 1 ),
( 6, 1 ),
( 7, 3 ),
( 8, 3 ),
( 9, 3 ),
( 10, 4 ),
( 11, 4 )
;
<小时/>
查询
select trad.id_trad, coalesce(upvotes, 0) - coalesce(downvotes, 0) as score
from trad
left join
(
select
trad.id_trad, count(*) as upvotes
from trad
inner join vote_up
on trad.id_trad = vote_up.id_trad
group by 1
) uv
on trad.id_trad = uv.id_trad
left join
(
select
trad.id_trad, count(*) as downvotes
from trad
inner join vote_down
on trad.id_trad = vote_down.id_trad
group by 1
) dv
on uv.id_trad = dv.id_trad
where trad.id_question = 1
order by score desc
limit 4
;
输出
+---------+-------+
| id_trad | score |
+---------+-------+
| 7 | 3 |
| 6 | 2 |
| 3 | 1 |
| 5 | 1 |
+---------+-------+
<强> sqlfiddle ( separate structures )
<小时/>注意
consider also restructuring your votes into one table. atm vote_up and vote_down are unnecessarily duplicating the same structure.. this would look like :
关于mysql - SQL : select top 4 results with the higher votes UP and lower votes DOWN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34449300/
我收到这些错误... 严重:必须安装 JRE 1.3 或更高版本! 严重:必须安装JDK 1.3或更高版本! ...在 Windows 7 (x64) 上安装 JAI(Java 高级成像)1.1.3
我们在类里面学习高阶函数,我们的教授提到它们对网络编程很有用。我不确定在什么情况下会是这样,并且想知道是否有人在一些常见的 Web 编程任务中有过高阶函数的经验,以及它们在什么情况下会有用。 我看了我
我一直在思考我正在处理的库中的一个设计问题,我意识到使用存在类型可能允许我以一种简化库的许多部分的方式更改我的设计。但是,我似乎无法让它正常工作。 在我看来,myBuilder 符合 MultiSig
以下 Raku 脚本: #!/usr/bin/env raku use v6.d; grammar MyGrammar { rule TOP { '=' } token keywo
根据wiki AND 的优先级高于 OR。 我想知道,是否有一个子句表述为a || b && c 首先应该如何计算? (a||b)还是(b && c)? 最佳答案 由于优先级,它的计算结果为 (a |
有两个类。 B 类派生自 A。 class A { } class B : A { public B() { } public int Number { get
我知道add、get等基本操作的时间复杂度是O(logn)。但是我没有找到lower()和higher()的细节。那么,Java中TreeSet的lower()和higher()的时间复杂度分别是多少
在 this answer我当场编造了一些看起来有点像“高阶Traversable”的东西:比如Traversable但是对于从 Hask 到 Hask 的 endofunctors 类别的仿函数。
我想创建一个包装变异的更高级别的函数。我想为我的函数提供一个表达式参数,并能够在 mutate 中使用该表达式: datas 50) Error in mutate_impl(.data, dots
CLLocationManager 有两种请求权限的方法: requestWhenInUseAuthorization requestAlwaysAuthorization 但是,如果当前授权状态不是
到目前为止,我已经为他们设计了大约5种实验语言和解释器,用于教育,业余爱好和娱乐。 我注意到的一件事:类汇编语言仅包含子例程和条件跳转,因为结构要慢得多,高级语言具有if,while等。我同时开发了它
所以我将 SFML 用于计算机科学项目 - 制作国际象棋游戏。我有一个 Square 类,它是棋盘的一个正方形 - 目前,它包含四个顶点(成员变量 sf 中的四个 sf::Vertex 对象: :Ve
任何人都可以描述 TreeSet 集合的 higher() 方法在按降序排序时的这种行为: 代码: NavigableSet set = new TreeSet<>(); set.add(10); s
来自 Marijn Haverbeke 的Eloquent Javascript一书,有 this example同时引入高阶函数的概念: function greaterThan(n) { re
我有一个 div,它只包含一个高度为 400 像素的图像。 div 没有填充,但它的高度为 406px,导致其 img 下方有一个丑陋的 6px 灰色水平条纹。 灰色 background 的原因是可
我总是使用 System.BitConverter.ToDouble() 将字节转换为 double ,如下所示: double value = BitConverter.ToDouble(flt,
我正在尝试设置一些其他组不应该看到的组维护文件夹。目前,我通过取消单击@@sharing 选项卡中的“从更高级别继承权限”复选框来实现这一点,但我想自动执行此操作。 我在文档或谷歌搜索中找不到任何关于
Data.Array不为 Array 提供折叠类型。 在 Real World Haskell(第 12 章)中,据说原因是 Array s 可以根据程序员的需要以不同的方式折叠: First of
在以下代码中(来自Functional Programming in Scala): trait Functor[F[_]] { def map[A,B](fa: F[A])(f: A => B)
是否可以完全否定子文件夹中的 web.config? 显然,我在根目录中有一个 web.config。 如果我有一个名为“MyApp”的子文件夹,我可以在其中编写一堆代码并让它在不引用根目录下的 we
我是一名优秀的程序员,十分优秀!