SQL, How to Concatenate results?

前端 未结 7 1950
渐次进展
渐次进展 2020-11-29 08:08

I currently have a SQL query that returns a number of fields. I need one f the fields to be effectively a sub query sub that.

The Problem in detail:

7条回答
  •  情书的邮戳
    2020-11-29 08:48

    In mysql you'd use the following function:

    SELECT GROUP_CONCAT(ModuleValue, ",") FROM Table_X WHERE ModuleID=@ModuleID
    

    I am not sure which dialect you are using.

提交回复
热议问题