作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个表“消息”结果:
我尝试过:
SELECT idutente, richiesta_id
FROM (
SELECT sender_id, richiesta_id
FROM messages
UNION
SELECT receiver_id, richiesta_id
FROM messages
) AS DistinctCodes (idutente)
WHERE idutente IS NOT NULL;
但不起作用或不正确。我怎样才能从你看到的 table 上得到表格为:
| richiesta_id | users |
|---------------------|-------------------------------------|
| 55 | 2, 3, 4 |
| other richiesta_id | other users list separated by comma |
最佳答案
我认为您需要“GROUP BY”和“GROUP_CONCAT”的组合来存档此内容。
SELECT DistinctCodes.richiesta_id, GROUP_CONCAT(DISTINCT DistinctCodes.uid ORDER BY DistinctCodes.uid ASC)
FROM (
SELECT sender_id AS uid, richiesta_id
FROM messages
UNION
SELECT receiver_id AS uid, richiesta_id
FROM messages
) AS DistinctCodes
GROUP BY DistinctCodes.richiesta_id
关于MYSQL - 查询获取不同的发送者ID和接收者ID以及richesta_id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58535989/
我是一名优秀的程序员,十分优秀!