I want to use the following statement to add a row in a table named people with one column which is varchar(100)
insert into people values ('a b')
I want to have a new line between a and b.
How to do this?
I tried something like 'a CHAR(13) b' but did not work.
Thanks.