0
喜有兩個表命名角色和工作respectivly 組CONCAT,並在第
,並在當運行下面的查詢
SELECT job_id ,GROUP_CONCAT(roles_title) from jobs left join roles on roles_id in (roles) group by job_id
預期結果
<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>
這裏的答案是規範化數據,而如果你有很多行,它的回答可能會比蝸牛慢。 – Mihai