I want to use new line in my select query
For example:
SELECT
FULLNAME + ADDRESS AS X1
FROM
TBL_USERS
and the result should be something like this:
ABBAS KOLAHDOOZAN
ISFAHAN,BOZORGMEHR ST
as a single column.
I use CHAR(10), CHAR(13)
but that dont work.
Does anyone have a working solution?