天天看点

mysql concat 多个字段,MySQL GROUP_CONCAT多个字段

mysql concat 多个字段,MySQL GROUP_CONCAT多个字段

I'm probably having a no-brain moment.

I want to return a series of numbers using GROUP_CONCAT from two fields in my database. I have done this so far using the following:

SELECT t_id,

CONCAT(GROUP_CONCAT(DISTINCT s_id),',',IFNULL(GROUP_CONCAT(DISTINCT i_id),'')) AS all_ids

FROM mytable GROUP BY t_id

This works fine but if i_id is NULL then of course I get an unnecessary comma. Is there a better way to do this so I don't end up with a comma at the end if i_id is NULL?

解决方案

You need to use CONCAT_WS to avoid extra comma for NULL values, try this:

SELECT t_id,

CONCAT_WS(',', GROUP_CONCAT(DISTINCT s_id),

GROUP_CONCAT(DISTINCT i_id)) AS all_ids

FROM mytable

GROUP BY t_id;