I know that, in some Programming language, if you do something like:
'This is on first line
This is on second line'
Then it will display properly like this:
This is on first line
This is on second line
When I concatenate a string in a SQLite database
SELECT *, [FIELD1] || '
' || [FIELD2] from TABLE
(where [FIELD1] = This is on first line
[FIELD2] = This is on second line)
it displays as such:
This is on first line
This is on second line
Is there a reason that it isn't displaying the
characters properly?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…