用重复项转换 table

transform table with duplicate

我正在尝试根据附加模型将具有重复项的基础转换为新基础 没有重复是不可能的 我不知道我该怎么做 预先感谢您的帮助

原基地

IDu|编号 |资讯
1 |A |1
2 |A |2
3 |A |3
4 |A |4
5 |A |5
6 |B |1
7 |B |2
8 |B |3
9 |B |4
10 |C |1
11 |D |1
12 |D |2
13 |D |3

到达基地

您可以使用 GROUP_CONCAT (https://www.w3resource.com/mysql/aggregate-functions-and-grouping/aggregate-functions-and-grouping-group_concat.php):

SELECT
  ID, GROUP_CONCAT(INFORMATION), COUNT(INFORMATION)
FROM
  TABLE
GROUP BY
   ID

非常感谢。 快速完美的响应 另一方面,我如何过滤才能获得最大价值

这个查询的范围是从小到大,但是如何只保留最大值

D | Resultat/table2 | 最大值
|(1,2,3,4,5) |5
B |(1,2,3,4) |4
C |(1) |1
D |(1,2,3) |3

我尝试过,但没有成功

    SELECT ID,GROUP_CONCAT(ID1)
from tournee_reduite
GROUP BY ID
ORDER BY MAX(ID1) desc;

再次感谢你