I have a string (name lastname,name2 lastname2...)
with values from a database table and I want to display it like:
我有一个字符串(名称lastname,name2 lastname2…),其中包含来自数据库表的值,我想将其显示为:
name lastname name2 lastname2..
I use group_concat function it works for commma separators but I need new line separator.
我使用group_concat函数它适用于commma分隔符,但我需要新的行分隔符。
group_concat(concat_ws(' ',users.firstname, users.lastname) SEPARATOR '<br>') as contacts_name
1 个解决方案
#1
3
Try this : "\r\n"
with double quotes, not simple
试试这个:双引号的“\r\n”,不是简单的
#1
3
Try this : "\r\n"
with double quotes, not simple
试试这个:双引号的“\r\n”,不是简单的