I have a table on Sql:
ID User Observation
========================================
1 John This is correct!
----------------------------------------
2 Michael I got an error!
----------------------------------------
3 Joshua This is incorrect!
----------------------------------------
What I want is a function thar returns a varchar With the data on a string
Like this:
Edit: This is the result I expect:
John says: This is correct!\r\nMichael says: I got an error!\r\nJoshua says: This is incorrect
Is there a way to do that?