The base documentation states that you can get a line break using Char(13) e.g.
SELECT "Firstname"||' '||"Surname"||Char(13)||"Road"||Char(13)||"Town" FROM "Table"
However, when I run this I just get the concatenated query on one line with no line breaks.
What am i doing wrong?
Thanks for your help,
Adam Fenn.