gpt4 book ai didi

mysql - 将两行结果合并为两列(mysql)

转载 作者:行者123 更新时间:2023-11-29 20:02:41 25 4
gpt4 key购买 nike

这是file_tbl enter image description here这是name_tbl enter image description here

我想要以下结果。 enter image description here

select email, file, name 
from file_tbl as ft
join name_tble as nt on ft.email = nt.email
where nt appId = 6

没有给出想要的结果。

如何实现这一目标?

最佳答案

这将是您可以使用的东西:

SELECT email,GROUP_CONCAT(DISTINCT file SEPARATOR ','),
name from file_tbl
as ft join name_tble
as nt on ft.email = nt.email
WHERE 1
GROUP BY nt.email

关于mysql - 将两行结果合并为两列(mysql),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40480738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com