carriage return?

J

js

hi, how to put a
carriage return into a update query:

update tb1 set fd1 = "" + chr(13) + ""??



thanks.
 
D

Douglas J. Steele

You need both Chr(13) & Chr(10) in that order, and you really don't need the
null strings.

update tb1 set fd1 = chr(13) & chr(10)

Of course, I don't see what use fd1 is going to be!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top