Separator in group_concat #638
-
Hello ! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi, If you want to escape characters, you have to use backslashes i.e. Otherwise, something like that works for me with SQLite (3.46): SELECT GROUP_CONCAT(foo, CHAR(10)); Which database are you using? |
Beta Was this translation helpful? Give feedback.
-
Hello ! You need to use markdown if you want to create multiple paragraphs of text. The following will output select
'foldable' as component;
select
'The foldable component' as title,
'
a
b
c
d' as description; but the following will create multiple paragraphs, the way you want: select
'foldable' as component;
select
'The foldable component' as title,
'
a
b
c
d' as description_md; (description_md instead of description) |
Beta Was this translation helpful? Give feedback.
So, in your case, with group_concat, the solution would look like this: