我想为特定问题选择最后一个答案。我当前的解决方案仅从“Nutzer1237”中选择了问题,但我也希望得到“Nutzer1234”的最后一个答案。
SELECT pid, frage, antwort, user, created_at
FROM antwortenverlauf
WHERE frage = 'Risiko: Wie empfinden Sie die Kommunikation mit dem Kunden?'
AND (
user, created_at
)
IN (
SELECT user, MAX( created_at )
FROM antwortenverlauf
)
ORDER BY created_at DESC
抱歉我的英文!
翻译: frage =问题
antwort = answer
答案 0 :(得分:1)
在 official manual 中,有3个示例如何解决此问题。
任务:对于每篇文章,找到最多的经销商或经销商 价格昂贵。
这个问题可以通过像这样的子查询来解决:
SELECT article, dealer, price
FROM shop s1
WHERE price=(SELECT MAX(s2.price)
FROM shop s2
WHERE s1.article = s2.article);
前面的示例使用相关的子查询,可以是 效率低下(参见第13.2.10.7节“相关子查询”)。其他 解决问题的可能性是使用不相关的 FROM子句中的子查询或LEFT JOIN。
不相关的子查询:
SELECT s1.article, dealer, s1.price
FROM shop s1
JOIN (
SELECT article, MAX(price) AS price
FROM shop
GROUP BY article) AS s2
ON s1.article = s2.article AND s1.price = s2.price;
LEFT JOIN:
SELECT s1.article, s1.dealer, s1.price
FROM shop s1
LEFT JOIN shop s2 ON s1.article = s2.article AND s1.price < s2.price
WHERE s2.article IS NULL;
LEFT JOIN的工作原理是当s1.price达到最大值时 值,没有s2.price具有更大的值和s2行 值将为NULL。
答案 1 :(得分:1)
您的查询按预期工作,将Nutzer1237
记录为“用户”,因为在您的子查询中,您正在查找具有最新时间戳的记录:MAX( created_at )
而不对结果进行分组每user
。
然后,您必须使用此查询对子查询中的user
分组结果:
SELECT user, MAX( created_at )
FROM antwortenverlauf
GROUP BY user
注意:请确保您要查找的frage
列的值不包含不需要的空格或其他字符。
但是,由于您在不考虑MAX(created_at)
列的情况下查找frage
,因此您的查询无法获得所需的结果。您必须在子查询中移动WHERE
条件。您的最终查询将如下所示:
SELECT pid, frage, antwort, user, created_at
FROM antwortenverlauf
WHERE (user, created_at)
IN (
SELECT user, MAX( created_at )
FROM antwortenverlauf
WHERE frage = 'Risiko: Wie empfinden Sie die Kommunikation mit dem Kunden?'
GROUP BY user
)
ORDER BY created_at DESC
答案 2 :(得分:1)
你应该已经阅读了@fancyPants的答案
SELECT pid, frage, antwort, user, created_at
FROM antwortenverlauf a1
WHERE frage = 'Risiko: Wie empfinden Sie die Kommunikation mit dem Kunden?'
AND (user, created_at) IN (SELECT user, MAX( created_at )
FROM antwortenverlauf a2
WHERE a1.frage=a2.frage
GROUP BY USER)
ORDER BY created_at DESC
答案 3 :(得分:0)
SELECT pid, frage, antwort, user, created_at
FROM antwortenverlauf
WHERE frage = 'Risiko: Wie empfinden Sie die Kommunikation mit dem Kunden?'
AND (
user, created_at
)
IN (
SELECT user, MAX( created_at )
FROM antwortenverlauf
GROUP BY USER // **this is the only difference**
)
ORDER BY created_at DESC
在您的代码中,内部查询只返回一个原始问题