Subject How to add to string constant?
Author Dimitry Sibiryakov
On 20 Nov 2002 at 18:43, Andrew Guts wrote:

>I need something like that:
>
>insert into Table1 (Field1)
>values ('String\n')

Try something like that:

insert into Table1(Field1)
values('First string
Second string')

It is platform-specific, but I believe you can fight surrounding
problems.

SY, Dimitry Sibiryakov.