- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个参与者和答案的基表,结构如下:
ParticipantId、BusUnitId、QuestionNum、Answer。
在此表中,QuestionNum 的范围从 1 到 6。我还有另外两个表将 QuestionNum 链接到实际问题表 BusUnitQuestions 和 ParticipantQuestions。对于每个 QuestionNum,我必须根据 QuestionId 获取实际的问题文本。
BusUnitId, QuestionId
ParticipantId, QuestionId
现在假设 QuestionNum 为 1 到 6 的记录。BusUnitQuestions 有 3 条记录,因此 QuestionNum 1 到 3 必须加入到来自 BusUnitQuestions 的 QuestionId 上的问题,而 QuestionNum 4 到 6 必须加入到来自 ParticipantQuestions 的 QuestionId 上的问题。我假设我需要在 BusUnitQuestions 的子查询中使用 ROW_NUMBER() 来加入我的答案表,但在那之后我迷路了。
如果有人完全理解我的意思,您有什么建议吗?
下面是一个示例设置。在此,参与者回答了 5 个问题(1 到 5)。这些问题中的前三个问题由参与者所在部门设置,后两个问题由参与者选择。实际上,可供部门和参与者选择的问题远不止 5 个。我需要使用与 Answers 表中的 QuestionNum 对应的 DepartmentQuestions 和 ParticipantQuestions 中的行号将 Questions 表连接到 Answers 表。
create table Answers (AnswerId int identity(1,1), ParticipantId int, DeptId int, QuestionNum int, AnswerScore int)
create table Dept_Question (DqId int identity(1,1), DeptId int, QuestionId int)
create table Particpant_Question (PqId int identity(1,1), ParticipantId int, QuestionId int)
create table Questions (QuestionId int identity(1,1), QuestionText nvarchar(200))
insert Questions (QuestionText) values ('What is a duck?')
insert Questions (QuestionText) values ('How much do you weigh?')
insert Questions (QuestionText) values ('Why does orange fit?')
insert Questions (QuestionText) values ('Who pokes the fish?')
insert Questions (QuestionText) values ('Why no cow bells?')
insert Dept_Question (DeptId, QuestionId) values (3, 3)
insert Dept_Question (DeptId, QuestionId) values (3, 4)
insert Dept_Question (DeptId, QuestionId) values (3, 1)
insert Particpant_Question(ParticipantId, QuestionId) values (1, 2)
insert Particpant_Question(ParticipantId, QuestionId) values (1, 4)
insert Answers (ParticipantId, DeptId, QuestionNum, AnswerScore) values (1, 3, 1, 63)
insert Answers (ParticipantId, DeptId, QuestionNum, AnswerScore) values (1, 3, 2, 89)
insert Answers (ParticipantId, DeptId, QuestionNum, AnswerScore) values (1, 3, 3, 44)
insert Answers (ParticipantId, DeptId, QuestionNum, AnswerScore) values (1, 3, 4, 54)
insert Answers (ParticipantId, DeptId, QuestionNum, AnswerScore) values (1, 3, 5, 72)
最佳答案
据我了解,您只有一个答案列表,但问题可能出现在几个不同表格中的任何一个中。您可以采用两种方法来获得此方法——使用 ISNULL 的几个 LEFT JOIN,或者您可以创建一个 VIEW,它是您的问题表的 UNION 和 JOIN 到它。
如果只是这一个查询并且您以后不会添加更多问题类型,那么第一个可能更容易,但是如果您要经常这样做(添加问题类型或查询数据),我会选择方法 2,因为您只需要维护 View 而不是原始查询。
方法一:
SELECT a.ParticipantId, a.QuestionId, a.AnswerId, ISNULL(q1.QuestionText, q2.QuestionText, NULL) as QuestionText
FROM Answers a
LEFT
JOIN Question1 q1 /* BusinessUnitQuestions? */
ON a.QuestionId = q1.QuestionId
LEFT
JOIN Question2 q2 /* ParticipantQuestions? */
ON a.QuestionId = q2.QuestionId
这样,无论问题文本出现在哪个表中,都会被提取。
方法二:
首先,创建一个包含所有问题的 UNION 的 View ,如下所示(添加任意数量的联合):
CREATE VIEW AllQuestions
AS
SELECT QuestionId, QuestionText
FROM Question1
UNION ALL
SELECT QuestionId, QuestionText
FROM Question2
然后,您可以在第一个查询的简化版本中使用该 View :
SELECT a.ParticipantId, a.QuestionId, a.AnswerId, q.QuestionText
FROM Answers a
JOIN AllQuestions q
ON a.QuestionId = q.QuestionId
关于SQL 查询问题 : How to merge two lists,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2808828/
我有三张 table 。表 A 有选项名称(即颜色、尺寸)。表 B 有选项值名称(即蓝色、红色、黑色等)。表C通过将选项名称id和选项名称值id放在一起来建立关系。 我的查询需要显示值和选项的名称,而
在mysql中,如何计算一行中的非空单元格?我只想计算某些列之间的单元格,比如第 3-10 列之间的单元格。不是所有的列...同样,仅在该行中。 最佳答案 如果你想这样做,只能在 sql 中使用名称而
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 7 年前。 Improve this ques
我正在为版本7.6进行Elasticsearch查询 我的查询是这样的: { "query": { "bool": { "should": [ {
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 7 年前。 Improve this ques
是否可以编写一个查询来检查任一子查询(而不是一个子查询)是否正确? SELECT * FROM employees e WHERE NOT EXISTS (
我找到了很多关于我的问题的答案,但问题没有解决 我有表格,有数据,例如: Data 1 Data 2 Data 3
以下查询返回错误: 查询: SELECT Id, FirstName, LastName, OwnerId, PersonEmail FROM Account WHERE lower(PersonEm
以下查询返回错误: 查询: SELECT Id, FirstName, LastName, OwnerId, PersonEmail FROM Account WHERE lower(PersonEm
我从 EditText 中获取了 String 值。以及提交查询的按钮。 String sql=editQuery.getText().toString();// SELECT * FROM empl
我有一个或多或少有效的查询(关于结果),但处理大约需要 45 秒。这对于在 GUI 中呈现数据来说肯定太长了。 所以我的需求是找到一个更快/更高效的查询(几毫秒左右会很好)我的数据表大约有 3000
这是我第一次使用 Stack Overflow,所以我希望我以正确的方式提出这个问题。 我有 2 个 SQL 查询,我正在尝试比较和识别缺失值,尽管我无法将 NULL 字段添加到第二个查询中以识别缺失
什么是动态 SQL 查询?何时需要使用动态 SQL 查询?我使用的是 SQL Server 2005。 最佳答案 这里有几篇文章: Introduction to Dynamic SQL Dynami
include "mysql.php"; $query= "SELECT ID,name,displayname,established,summary,searchlink,im
我有一个查询要“转换”为 mysql。这是查询: select top 5 * from (select id, firstName, lastName, sum(fileSize) as To
通过我的研究,我发现至少从 EF 4.1 开始,EF 查询上的 .ToString() 方法将返回要运行的 SQL。事实上,这对我来说非常有用,使用 Entity Framework 5 和 6。 但
我在构造查询来执行以下操作时遇到问题: 按activity_type_id过滤联系人,仅显示最近事件具有所需activity_type_id或为NULL(无事件)的联系人 表格结构如下: 一个联系人可
如何让我输入数据库的信息在输入数据 5 分钟后自行更新? 假设我有一张 table : +--+--+-----+ |id|ip|count| +--+--+-----+ |
我正在尝试搜索正好是 4 位数字的 ID,我知道我需要使用 LENGTH() 字符串函数,但找不到如何使用它的示例。我正在尝试以下(和其他变体)但它们不起作用。 SELECT max(car_id)
我有一个在 mysql 上运行良好的 sql 查询(查询 + 连接): select sum(pa.price) from user u , purchase pu , pack pa where (
我是一名优秀的程序员,十分优秀!