gpt4 book ai didi

mysql - 组 concat 和 in 子句

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

您好,有两个表,分别名为 Roles 和 jobs jobs table structure

Roles table structure

当运行以下查询时

SELECT job_id ,GROUP_CONCAT(roles_title) from jobs left join roles on roles_id in (roles) group by job_id 

Result i got

预期结果

<table>
<tr>
<td>Job_id</td>
<td>Roles</td>
</tr>
<tr>
<td>1</td>
<td>Admin,acc & test</td>
</tr>
<tr>
<td>2</td>
<td>acc& test</td>
</tr>
</table>

最佳答案

您可以在 join 子句中使用 FIND_IN_SET()

SELECT job_id ,GROUP_CONCAT(roles_title SEPARATOR '&')
from jobs
left join roles on FIND_IN_SET(roles_id,roles)
GROUP BY job_id

希望这有帮助。

关于mysql - 组 concat 和 in 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33826832/

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