有時候我們會需要只group concat某些條件,就可以像這樣寫: group_concat(DISTINCT IF(user.name != 'abc' AND b.b_id != c.c_id, c.name, NULL)) as d 符合這個條件的才給值,否則給null,由於group_concat會ignore null的,所以最後concat起來就會只有把符合條件的concat起來。 本筆記參考:1. https://stackoverflow.com/questions/30944930/if-condition-with-group-concat-in-mysql