Hi, I'm trying to get a column result in a single row. Is it possible in My sql say I
Select name from users where city = 'NewYork'
now this will result in
name
mak
sandy
john
Can I get the result in this
name
mak,sandy,john
I Mysql concat_ws() function does concat but its not showing me result.